

.bank-logo{border-radius: 360px;
    margin: 0 auto;
    height: 100px;
    padding: 10px;
}
.oferty-logo{text-align:center}
.oferta-logo-overlay img{border-radius: 360px!impotant;}
.ast-article-single{
	    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px!important;
    box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}/* ===== UKRYCIE BREADCRUMBS W PRAWEJ KOLUMNIE ===== */
.ast-breadcrumbs-wrapper, {
    display: none !important;
}
/* ===== 1. NAGŁÓWEK STRONY ===== */
.site-header {
    padding: 10px 0 !important;
    background: white !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.site-branding {
    margin: 0 !important;
    padding: 5px 0 !important;
}

.site-title {
    font-size: 24px !important;
    line-height: 1.2 !important;
    margin: 0 !important;
}

.site-description {
    font-size: 12px !important;
    margin: 0 !important;
    color: #666;
}

.main-navigation {
    margin: 0 !important;
}

.main-navigation ul {
    list-style: none;
    margin: 0 !important;
    padding: 0 !important;
}

.main-navigation ul li {
    margin: 0 !important;
}

.main-navigation ul li a {
    padding: 8px 12px !important;
    line-height: 1.2 !important;
    font-size: 14px !important;
}

/* ===== 2. NAGŁÓWEK WPISU (tytuł + breadcrumbs) ===== */
.wpis-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.wpis-tytul {
    font-size: 32px !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin: 0 0 10px 0 !important;
    line-height: 1.2 !important;
}

.wpis-breadcrumbs {
    font-size: 13px;
    color: #64748b;
    margin-top: 5px;
}

.wpis-breadcrumbs a {
    color: #c40000;
    text-decoration: none;
}

.wpis-breadcrumbs a:hover {
    text-decoration: underline;
}

.wpis-breadcrumbs .separator {
    margin: 0 5px;
    color: #94a3b8;
}

.wpis-breadcrumbs .current {
    color: #333;
    font-weight: 500;
}

/* ===== 3. GŁÓWNY UKŁAD OFERTY ===== */
.oferty-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 30px 0;
    width: 100%;
}

.oferty-left {
    flex: 0 0 300px;
}

.oferty-right {
    flex: 1;
    min-width: 280px;
}

/* ===== 4. BOX Z POLAMI OFERTY ===== */
.oferty-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.oferty-box h2 {
    margin: 0 0 20px 0;
    font-size: 22px;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 12px;
}

.oferty-box h2 i {
    color: #c40000;
    font-size: 24px;
}

/* ===== 5. POJEDYNCZE POLE W OFERCIE ===== */
.oferty-field {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 12px;
    margin-bottom: 8px;
    border: 1px solid #edf2f7;
    transition: all 0.2s;
}

.oferty-field:hover {
    border-color: #c40000;
    box-shadow: 0 2px 8px rgba(196, 0, 0, 0.1);
    transform: translateY(-2px);
}

.field-icon {
    width: 36px;
    height: 36px;
    background: #c40000;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.field-content {
    flex: 1;
}

.field-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
    flex-wrap: wrap;
}

.field-header strong {
    font-size: 13px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.field-value {
    font-size: 15px;
    font-weight: 500;
    color: #0f172a;
    display: block;
    line-height: 1.4;
    word-break: break-word;
}

/* ===== 6. TOOLTIP (ikona "i") ===== */
.info-tooltip {
    position: relative;
    cursor: help;
    display: inline-flex;
}

.info-icon {
    width: 16px;
    height: 16px;
    background: #94a3b8;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    transition: background 0.2s;
}

.info-tooltip:hover .info-icon {
    background: #c40000;
}

.tooltip-text {
    visibility: hidden;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #1e293b;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    margin-bottom: 5px;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 10;
    pointer-events: none;
}

.tooltip-text::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 4px;
    border-style: solid;
    border-color: #1e293b transparent transparent transparent;
}

.info-tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* ===== 7. ODLICZANIE CZASU ===== */
.odliczanie {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.countdown-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #c40000;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 5px;
    width: fit-content;
}

.countdown-days {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 12px;
}

.countdown-label {
    font-size: 11px;
    opacity: 0.9;
}

.countdown-badge.urgent {
    background: #ff6b6b;
    animation: pulse 1s infinite;
}

.oferta-wygasla {
    color: #999 !important;
    text-decoration: line-through;
    font-style: italic;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* ===== 8. RESPONSYWNOŚĆ ===== */
@media (max-width: 768px) {
    .oferty-left,
    .oferty-right {
        flex: 0 0 100%;
    }
    
    .wpis-tytul {
        font-size: 24px !important;
    }
    
    .site-header {
        padding: 5px 0 !important;
    }
    
    .site-branding {
        padding: 0 !important;
    }
}