/* === Tło w stylu nowych stron === */
.auth-one-bg {
    position: relative;
    background-color: #ffffff;
    background-image: radial-gradient(rgba(15, 91, 40, 0.12) 1.8px, transparent 2px);
    background-size: 22px 22px;
    min-height: 100vh;
    width: 100%;
}

/* delikatne półprzezroczyste nakładki */
.bg-overlay {
    background: rgba(15, 91, 40, 0.05);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Sekcja cennika – rozciąga się naturalnie */
.pricing-section {
    position: relative;
    z-index: 1;
    padding-top: 80px;
    padding-bottom: 80px;
}

/* === Karty planów === */
.plan-box {
    border: 1px solid #b7e0af;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(15, 91, 40, 0.1);
    background-color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.plan-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(15, 91, 40, 0.15);
}

/* === Teksty === */
.text-primary {
    color: #0f5b28 !important;
}

/* === Przyciski === */
.btn-success {
    background-color: #0f5b28 !important;
    border-color: #0f5b28 !important;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-success:hover {
    background-color: #157a34 !important;
    transform: translateY(-1px);
}

/* === Swiper === */
.myPlans {
    padding: 10px 40px;
}

.swiper-slide {
    height: auto !important;
}

@media (max-width: 768px) {
    .myPlans {
        padding: 0 15px;
    }
}

/* Ukryj sekcje rozwijane na starcie */
.toggle-content {
    display: none;
}

/* === Strzałki Swipera (dopasowane do brandowego stylu) === */

/* Reset stylów i pozycjonowanie */
.swiper-button-prev,
.swiper-button-next {
    background: none !important;
    backdrop-filter: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    outline: none !important;
    width: auto !important;
    height: auto !important;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

/* Wyłącz pseudo-elementy Swipera */
.swiper-button-prev::after,
.swiper-button-next::after {
    display: none !important;
    content: none !important;
}

/* Ikonki (RemixIcon) */
.swiper-button-prev i,
.swiper-button-next i {
    font-size: 40px;
    color: #0f5b28; /* Twoja ciemna zieleń */
    transition: color 0.2s ease, transform 0.2s ease;
}

/* Hover efekt */
.swiper-button-prev i:hover,
.swiper-button-next i:hover {
    color: #157a34; /* jaśniejsza zieleń */
    transform: scale(1.1);
}

/* Pozycje */
.swiper-button-prev {
    left: 10px;
}

.swiper-button-next {
    right: 10px;
}

/* Responsywność */
@media (max-width: 768px) {
    .swiper-button-prev i,
    .swiper-button-next i {
        font-size: 28px;
    }
}

/* === Sekcja ceny === */
.plan-box h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #0f5b28; /* Twoja ciemna zieleń */
    margin-bottom: 0.5rem;
}

.plan-box h2 sup {
    font-size: 1rem;
    top: -1rem;
    color: #4e5d4e; /* lekko przygaszony, żeby nie wybijał */
}

.plan-box h2 small {
    font-size: 1rem;
    color: #6c757d;
}

.plan-box .price-wrapper {
    background: rgba(15, 91, 40, 0.05); /* delikatna zieleń w tle */
    border-radius: 10px;
    display: inline-block;
    padding: 0.6rem 1.2rem;
    margin-bottom: 0.8rem;
}

/* Opis pod ceną */
.plan-box .price-note {
    font-size: 0.85rem;
    color: #4e5d4e;
    font-style: italic;
}
