/* Header kampanya şeridi — PC'de her zaman görünür */
.header-campaigns-bar {
    position: relative;
    z-index: 5;
    background: #ececec;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.header-campaigns-bar__inner {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 46px;
    padding: 6px 0;
}
.header-campaigns-bar__label {
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #111;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.header-campaigns-bar__list {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 2px 0;
}
.header-campaigns-bar__list::-webkit-scrollbar { display: none; }
.header-campaigns-bar__link {
    flex-shrink: 0;
    display: inline-block;
    padding: 8px 14px;
    background: transparent;
    color: #111;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
}
.header-campaigns-bar__link:hover {
    background: rgba(0, 0, 0, 0.06);
    color: #000;
}
.header-campaigns-bar__all {
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 700;
    color: #197ffc;
    text-decoration: none;
    padding: 6px 10px;
}
.header-campaigns-bar__all:hover { color: #0d5fd6; }

/* Eski dropdown stilleri (geriye dönük) */
.campaign-menu-item { position: static; }
.campaign-menu-dropdown {
    min-width: 320px; max-width: 420px; padding: 0; border: none; border-radius: 0;
    background: #ececec; box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12); margin-top: 0;
}
.campaign-menu-list { list-style: none; margin: 0; padding: 14px 0; }
.campaign-menu-list li + li { border-top: 1px solid rgba(0, 0, 0, 0.06); }
.campaign-menu-link {
    display: block; padding: 14px 22px; color: #111; font-weight: 700; font-size: 15px;
    line-height: 1.35; text-decoration: none; transition: background 0.2s ease;
}
.campaign-menu-link:hover { background: #e2e2e2; color: #000; }
.campaign-menu-all {
    display: block; padding: 12px 22px 16px; font-size: 13px; font-weight: 600;
    color: #197ffc; text-decoration: none;
}

/* Liste sayfası */
.campaigns-page {
    --campaign-accent: var(--brand-color, #24b4c8);
    background: #f5f5f5;
    padding: 20px 0 64px;
    min-height: 60vh;
}

.campaigns-page__inner {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
}

.campaigns-page__breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 18px;
}

.campaigns-page__breadcrumb a {
    color: #6b7280;
    text-decoration: none;
}

.campaigns-page__breadcrumb a:hover {
    color: var(--campaign-accent);
}

.campaigns-hero {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px 28px;
    margin-bottom: 22px;
    box-shadow: 0 2px 12px rgba(17, 24, 39, 0.04);
}

.campaigns-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(36, 180, 200, 0.12);
    color: var(--campaign-accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.campaigns-hero__title {
    margin: 0 0 8px;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 800;
    line-height: 1.2;
    color: #111827;
    letter-spacing: -0.02em;
}

.campaigns-hero__lead {
    margin: 0;
    max-width: 560px;
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
}

.campaigns-hero__stat {
    flex-shrink: 0;
    min-width: 120px;
    padding: 16px 20px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    text-align: center;
}

.campaigns-hero__stat strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.campaigns-hero__stat span {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.72);
}

.campaigns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 18px;
}

.campaign-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: #111;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.campaign-card:hover {
    transform: translateY(-3px);
    border-color: #d1d5db;
    box-shadow: 0 14px 32px rgba(17, 24, 39, 0.08);
}

.campaign-card__visual {
    position: relative;
    aspect-ratio: 16/10;
    background: #f3f4f6;
    overflow: hidden;
}

.campaign-card__cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.campaign-card:hover .campaign-card__cover {
    transform: scale(1.03);
}

.campaign-card__mosaic {
    display: grid;
    width: 100%;
    height: 100%;
    gap: 3px;
    background: #ececec;
}

.campaign-card__mosaic--1 {
    grid-template-columns: 1fr;
}

.campaign-card__mosaic--2 {
    grid-template-columns: 1fr 1fr;
}

.campaign-card__mosaic--3 {
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: 1fr 1fr;
}

.campaign-card__mosaic--3 .campaign-card__mosaic-item:first-child {
    grid-row: span 2;
}

.campaign-card__mosaic-item {
    overflow: hidden;
    background: #f8fafc;
}

.campaign-card__mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.campaign-card:hover .campaign-card__mosaic-item img {
    transform: scale(1.04);
}

.campaign-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 3rem;
}

.campaign-card__tag {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(17, 24, 39, 0.82);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.campaign-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--campaign-accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}

.campaign-card__body {
    padding: 18px 18px 12px;
    flex: 1;
}

.campaign-card__title {
    margin: 0 0 8px;
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.3;
    color: #111;
}

.campaign-card__desc {
    margin: 0 0 12px;
    font-size: 13px;
    line-height: 1.55;
    color: #6b7280;
}

.campaign-card__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.campaign-card__chips span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    border-radius: 8px;
    background: #f8fafc;
    border: 1px solid #eef2f6;
    font-size: 11px;
    font-weight: 600;
    color: #475569;
}

.campaign-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px 18px;
    border-top: 1px solid #f1f5f9;
}

.campaign-card__price strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: #111;
    line-height: 1.1;
}

.campaign-card__price small {
    display: block;
    margin-top: 3px;
    font-size: 11px;
    color: #94a3b8;
}

.campaign-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 10px 14px;
    border-radius: 10px;
    background: #f3f4f6;
    color: #111;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
}

.campaign-card:hover .campaign-card__cta {
    background: #111;
    color: #fff;
}

.campaigns-page__empty {
    text-align: center;
    padding: 64px 24px;
    background: #fff;
    border: 1px dashed #d1d5db;
    border-radius: 16px;
}

.campaigns-page__empty i {
    font-size: 3rem;
    color: #cbd5e1;
    margin-bottom: 12px;
}

.campaigns-page__empty h2 {
    margin: 0 0 8px;
    font-size: 1.25rem;
}

.campaigns-page__empty p {
    color: #6b7280;
    margin: 0 0 16px;
}

.campaigns-page__empty-btn {
    display: inline-flex;
    padding: 10px 18px;
    border-radius: 10px;
    background: #111;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

@media (max-width: 768px) {
    .campaigns-hero {
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
    }

    .campaigns-hero__stat {
        text-align: left;
        display: flex;
        align-items: baseline;
        gap: 8px;
        min-width: 0;
        padding: 12px 16px;
    }

    .campaigns-hero__stat strong {
        font-size: 1.4rem;
    }

    .campaigns-hero__stat span {
        margin-top: 0;
    }

    .campaigns-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .campaign-card__footer {
        flex-direction: column;
        align-items: stretch;
    }

    .campaign-card__cta {
        justify-content: center;
    }
}

.bundle-page__inner { width: min(1240px, calc(100% - 32px)); margin: 0 auto; }
.bundle-page__breadcrumb {
    display: flex; align-items: center; gap: 8px; font-size: 13px; color: #64748b; margin-bottom: 20px;
}
.bundle-page__breadcrumb a { color: #64748b; text-decoration: none; }

/* Paket kampanya sayfası */
.bundle-page {
    --bundle-accent: var(--brand-color, #24b4c8);
    --bundle-blue: #197ffc;
    --bundle-text: #111827;
    --bundle-muted: #6b7280;
    --bundle-border: #e5e7eb;
    --bundle-bg: #f5f5f5;
    background: var(--bundle-bg);
    padding: 20px 0 80px;
    min-height: 65vh;
}

.bundle-page__inner {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
}

.bundle-page__breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--bundle-muted);
    margin-bottom: 18px;
}

.bundle-page__breadcrumb a {
    color: var(--bundle-muted);
    text-decoration: none;
}

.bundle-page__breadcrumb a:hover {
    color: var(--bundle-accent);
}

/* Üst başlık */
.bundle-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    background: #fff;
    border: 1px solid var(--bundle-border);
    border-radius: 16px;
    padding: 24px 28px;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px rgba(17, 24, 39, 0.04);
}

.bundle-top__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(36, 180, 200, 0.12);
    color: var(--bundle-accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.bundle-top__title {
    margin: 0 0 8px;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--bundle-text);
    letter-spacing: -0.02em;
}

.bundle-top__lead {
    margin: 0 0 14px;
    max-width: 560px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--bundle-muted);
}

.bundle-top__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bundle-top__chips span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 8px;
    background: #f8fafc;
    border: 1px solid #eef2f6;
    font-size: 12px;
    font-weight: 600;
    color: #475569;
}

.bundle-top__deal {
    flex-shrink: 0;
    text-align: right;
    padding: 18px 22px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    min-width: 180px;
}

.bundle-top__deal-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 4px;
}

.bundle-top__deal-price {
    display: block;
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 800;
    line-height: 1;
    color: #fff;
}

.bundle-top__deal-price small {
    font-size: 0.55em;
    font-weight: 700;
}

.bundle-top__deal-unit {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

/* İki sütun layout */
.bundle-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 20px;
    align-items: start;
}

.bundle-catalog__head {
    margin-bottom: 16px;
}

.bundle-catalog__head h2 {
    margin: 0 0 4px;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--bundle-text);
}

.bundle-catalog__head p {
    margin: 0;
    font-size: 13px;
    color: var(--bundle-muted);
}

/* Seçim paneli */
.bundle-panel {
    position: sticky;
    top: 96px;
}

.bundle-panel__card {
    background: #fff;
    border: 1px solid var(--bundle-border);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 28px rgba(17, 24, 39, 0.06);
}

.bundle-panel__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.bundle-panel__head h2 {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    color: var(--bundle-text);
}

.bundle-panel__counter {
    font-size: 12px;
    font-weight: 800;
    color: var(--bundle-blue);
    background: rgba(25, 127, 252, 0.1);
    padding: 5px 10px;
    border-radius: 999px;
}

.bundle-panel__progress {
    height: 6px;
    background: #f1f5f9;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 16px;
}

.bundle-panel__progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--bundle-accent), var(--bundle-blue));
    border-radius: 999px;
    transition: width 0.25s ease;
}

.bundle-slots {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.bundle-slot {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 72px;
    padding: 10px 12px;
    border: 1.5px dashed #d1d5db;
    border-radius: 12px;
    background: #fafbfc;
    position: relative;
    transition: border-color 0.2s, background 0.2s;
}

.bundle-slot.is-filled {
    border-style: solid;
    border-color: var(--bundle-accent);
    background: #fff;
}

.bundle-slot__index {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    flex-shrink: 0;
}

.bundle-slot.is-filled .bundle-slot__index {
    background: var(--bundle-accent);
}

.bundle-slot__body {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bundle-slot__body img {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.bundle-slot__body strong {
    display: block;
    font-size: 12px;
    line-height: 1.35;
    color: var(--bundle-text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bundle-slot__body span {
    display: block;
    font-size: 11px;
    color: var(--bundle-muted);
    margin-top: 2px;
}

.bundle-slot__placeholder {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #94a3b8;
    font-weight: 600;
}

.bundle-slot__remove {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 22px;
    height: 22px;
    border: none;
    border-radius: 50%;
    background: #f1f5f9;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
}

.bundle-slot__remove:hover {
    background: #fee2e2;
    color: #b91c1c;
}

.bundle-panel__summary {
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

.bundle-panel__total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;
}

.bundle-panel__total span {
    font-size: 13px;
    color: var(--bundle-muted);
}

.bundle-panel__total strong {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--bundle-text);
}

.bundle-panel__cta {
    width: 100%;
    border: none;
    border-radius: 10px;
    background: var(--bundle-accent);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 14px 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

.bundle-panel__cta:not(:disabled):hover {
    background: #1fa3b5;
    transform: translateY(-1px);
}

.bundle-panel__cta:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    background: #94a3b8;
}

.bundle-panel__note {
    margin: 10px 0 0;
    font-size: 11px;
    line-height: 1.45;
    color: #94a3b8;
    text-align: center;
}

/* Ürün kartları — site ürün kartı stiline uyumlu */
.bundle-products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
    gap: 16px;
}

.bundle-product-card {
    display: flex;
    flex-direction: column;
    text-align: left;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.bundle-product-card:hover:not(.is-selected):not(.is-full) {
    border-color: #d1d5db;
    box-shadow: 0 4px 16px rgba(17, 24, 39, 0.06);
}

.bundle-product-card.is-selected {
    border-color: #111;
    box-shadow: 0 0 0 1px #111;
}

.bundle-product-card.is-full {
    opacity: 0.5;
    cursor: not-allowed;
}

.bundle-product-card__media {
    position: relative;
    aspect-ratio: 3/4;
    background: #f8f8f8;
    overflow: hidden;
    border-radius: 14px 14px 0 0;
}

.bundle-product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bundle-product-card__fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 2rem;
}

.bundle-product-card__selected-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}

.bundle-product-card__selected-badge::after {
    content: attr(data-slot);
    position: absolute;
    top: -6px;
    left: -6px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--bundle-accent, #24b4c8);
    color: #fff;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 10px;
    font-weight: 800;
    line-height: 18px;
    text-align: center;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.bundle-product-card.is-selected .bundle-product-card__selected-badge {
    opacity: 1;
    transform: scale(1);
}

.bundle-product-card.is-selected .bundle-product-card__selected-badge::after {
    opacity: 1;
    transform: scale(1);
}

.bundle-product-card.is-selected .bundle-product-card__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 39, 0.08);
    pointer-events: none;
}

.bundle-product-card__body {
    padding: 12px 12px 8px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bundle-product-card__body h3 {
    margin: 0;
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 600;
    color: #111;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.7em;
}

.bundle-product-card__price {
    font-size: 13px;
    font-weight: 500;
    color: #7b8a9a;
    text-decoration: line-through;
}

.bundle-product-card__hint {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: #94a3b8;
    line-height: 1.35;
}

.bundle-product-card__action {
    margin: 0 10px 10px;
    min-height: 40px;
    border-radius: 10px;
    background: #f3f4f6;
    color: #111;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: background 0.2s ease, color 0.2s ease;
    pointer-events: none;
}

.bundle-product-card__action-pick,
.bundle-product-card__action-done {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
    min-height: 40px;
}

.bundle-product-card__action-done {
    display: none;
}

.bundle-product-card.is-selected .bundle-product-card__action {
    background: #111;
    color: #fff;
}

.bundle-product-card.is-selected .bundle-product-card__action-pick {
    display: none;
}

.bundle-product-card.is-selected .bundle-product-card__action-done {
    display: inline-flex;
}

.bundle-product-card.is-full .bundle-product-card__action {
    background: #f3f4f6;
    color: #9ca3af;
}

/* Mobil alt bar */
.bundle-mobile-bar {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 900;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: #fff;
    border-top: 1px solid var(--bundle-border);
    box-shadow: 0 -8px 24px rgba(17, 24, 39, 0.08);
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.bundle-mobile-bar__info span {
    display: block;
    font-size: 12px;
    color: var(--bundle-muted);
}

.bundle-mobile-bar__info strong {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--bundle-text);
}

.bundle-mobile-bar__cta {
    flex-shrink: 0;
    border: none;
    border-radius: 10px;
    background: var(--bundle-accent);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 20px;
    cursor: pointer;
}

.bundle-mobile-bar__cta:disabled {
    opacity: 0.45;
    background: #94a3b8;
}

/* Modal */
.bundle-modal {
    --bundle-accent: var(--brand-color, #24b4c8);
    --bundle-muted: #6b7280;
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
}

.bundle-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
}

.bundle-modal__dialog {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 480px;
    max-height: min(88vh, 720px);
    background: #fff;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -12px 40px rgba(15, 23, 42, 0.15);
    overflow: hidden;
}

.bundle-modal__scroll {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    padding: 22px 20px 8px;
    -webkit-overflow-scrolling: touch;
}

.bundle-modal__footer {
    flex-shrink: 0;
    padding: 12px 20px calc(14px + env(safe-area-inset-bottom));
    border-top: 1px solid #f1f5f9;
    background: #fff;
}

.bundle-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    border: none;
    background: #f1f5f9;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
}

.bundle-modal__eyebrow {
    display: block;
    margin-bottom: 4px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--bundle-accent);
}

.bundle-modal__head h3 {
    margin: 0 0 6px;
    font-size: 1.1rem;
    font-weight: 800;
}

.bundle-modal__product {
    color: var(--bundle-muted);
    margin: 0 0 16px;
    font-size: 14px;
}

.bundle-modal__variants {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
    padding-bottom: 8px;
}

.bundle-variant-btn {
    border: 1.5px solid #e5e7eb;
    background: #fff;
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    min-width: 52px;
}

.bundle-variant-btn.is-active {
    border-color: var(--bundle-accent, #24b4c8);
    background: rgba(36, 180, 200, 0.1);
    color: #0e7490;
}

.bundle-modal__confirm {
    width: 100%;
    border: none;
    border-radius: 12px;
    background: var(--bundle-accent, #24b4c8);
    color: #fff;
    padding: 14px 16px;
    min-height: 48px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    display: block;
}

.bundle-modal__confirm:disabled {
    background: #e5e7eb;
    color: #9ca3af;
    opacity: 1;
    cursor: not-allowed;
}

.bundle-modal__confirm:not(:disabled):hover {
    background: #1fa3b5;
    color: #fff;
}

.bundle-page__empty {
    text-align: center;
    padding: 64px 24px;
    background: #fff;
    border: 1px dashed #d1d5db;
    border-radius: 16px;
}

.bundle-page__empty i {
    font-size: 3rem;
    color: #cbd5e1;
    margin-bottom: 12px;
}

.bundle-page__empty h2 {
    margin: 0 0 8px;
}

.bundle-page__empty p {
    color: var(--bundle-muted);
    margin: 0 0 16px;
}

.bundle-page__empty-btn {
    display: inline-flex;
    padding: 10px 18px;
    border-radius: 10px;
    background: #111;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

@media (min-width: 769px) {
    .bundle-modal {
        align-items: center;
        padding: 20px;
    }

    .bundle-modal__dialog {
        border-radius: 18px;
        max-height: min(82vh, 680px);
    }

    .bundle-modal__footer {
        padding-bottom: 16px;
    }
}

@media (max-width: 992px) {
    .bundle-layout {
        grid-template-columns: 1fr;
    }

    .bundle-panel {
        position: static;
        order: -1;
    }

    .bundle-panel__cta {
        display: none;
    }

    .bundle-panel__note {
        display: none;
    }

    .bundle-mobile-bar {
        display: flex;
    }

    .bundle-page {
        padding-bottom: 100px;
    }

    .bundle-modal {
        padding-bottom: 76px;
    }
}

@media (max-width: 768px) {
    .bundle-top {
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
    }

    .bundle-top__deal {
        text-align: left;
    }

    .bundle-products__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .header-campaigns-bar__label {
        display: none;
    }

    .header-campaigns-bar__all {
        padding-left: 0;
    }
}

@media (max-width: 400px) {
    .bundle-products__grid {
        grid-template-columns: 1fr 1fr;
    }

    .bundle-product-card__body h3 {
        font-size: 14px;
        min-height: auto;
    }
}
