/**
 * Section: Oferte / Campanie
 * Beauty Duo–style promo block (hero banner + cards + disclaimer).
 * All selectors scoped under .bc-oferte-campanie.
 * Tokens come from global.css — no :root variables added here.
 */

/* ===========================================
   Wrapper
   =========================================== */
.bc-section-oferte-campanie {
    padding: 60px 0;
}

@media (min-width: 1024px) {
    .bc-section-oferte-campanie {
        padding: 80px 0;
    }
}

.bc-oferte-campanie {
    display: flex;
    flex-direction: column;
    gap: 60px;
    font-family: var(--bc-font-body);
}

/* ===========================================
   Hero banner
   =========================================== */
.bc-oferte-campanie__hero {
    width: 100%;
}

.bc-oferte-campanie__hero img {
    display: block;
    width: 100%;
    height: auto;
}

/* ===========================================
   Header text block
   =========================================== */
.bc-oferte-campanie__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    max-width: 880px;
    margin: 0 auto;
}

.bc-oferte-campanie__subtitle {
    margin: 0;
    color: var(--bc-pink);
    font-family: var(--bc-font-body);
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.bc-oferte-campanie__title {
    margin: 0;
    color: var(--bc-black);
    font-family: var(--bc-font-heading);
    font-weight: 400;
    font-size: 40px;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .bc-oferte-campanie__title {
        font-size: 60px;
        line-height: 72px;
    }
}

.bc-oferte-campanie__intro {
    margin: 12px 0 0;
    color: var(--bc-black);
    font-family: var(--bc-font-body);
    font-size: 18px;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .bc-oferte-campanie__intro {
        font-size: 24px;
        line-height: 40px;
    }
}

/* ===========================================
   Cards grid
   =========================================== */
.bc-oferte-campanie__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

@media (min-width: 768px) {
    .bc-oferte-campanie__cards {
        gap: 16px;
    }
}

@media (min-width: 1024px) {
    .bc-oferte-campanie__cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.bc-oferte-campanie__card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: #fff;
    padding-bottom: 36px;
}

/* Card image */
.bc-oferte-campanie__card-image {
    width: 100%;
}

.bc-oferte-campanie__card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Card body */
.bc-oferte-campanie__card-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0 16px;
    flex-grow: 1;
}

@media (min-width: 768px) {
    .bc-oferte-campanie__card-body {
        padding: 0 48px;
    }
}

.bc-oferte-campanie__card-title {
    margin: 0;
    color: var(--bc-black);
    font-family: var(--bc-font-heading);
    font-weight: 400;
    font-size: 22px !important;
    line-height: 1.25;
}

@media (min-width: 768px) {
    .bc-oferte-campanie__card-title {
        font-size: 32px !important;
        line-height: 40px;
    }
}

/* Price block */
.bc-oferte-campanie__card-prices {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bc-oferte-campanie__card-price-row {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

.bc-oferte-campanie__card-price-sale,
.bc-oferte-campanie__card-price-regular {
    display: inline-flex;
    align-items: flex-end;
    font-family: var(--bc-font-heading);
    font-weight: 400;
}

.bc-oferte-campanie__card-price-sale {
    color: var(--bc-hot-pink);
}

.bc-oferte-campanie__card-price-sale .bc-oferte-campanie__price-int {
    font-size: 28px;
    line-height: 32px;
}

.bc-oferte-campanie__card-price-sale .bc-oferte-campanie__price-dec,
.bc-oferte-campanie__card-price-sale .bc-oferte-campanie__price-cur {
    font-size: 18px;
    line-height: 24px;
}

@media (min-width: 768px) {
    .bc-oferte-campanie__card-price-sale .bc-oferte-campanie__price-int {
        font-size: 34px;
        line-height: 40px;
    }
    .bc-oferte-campanie__card-price-sale .bc-oferte-campanie__price-dec,
    .bc-oferte-campanie__card-price-sale .bc-oferte-campanie__price-cur {
        font-size: 24px;
        line-height: 30px;
    }
}

.bc-oferte-campanie__card-price-regular {
    color: var(--bc-black);
    text-decoration: line-through;
}

.bc-oferte-campanie__card-price-regular .bc-oferte-campanie__price-int {
    font-size: 22px;
    line-height: 28px;
}

.bc-oferte-campanie__card-price-regular .bc-oferte-campanie__price-dec,
.bc-oferte-campanie__card-price-regular .bc-oferte-campanie__price-cur {
    font-size: 14px;
    line-height: 18px;
}

@media (min-width: 768px) {
    .bc-oferte-campanie__card-price-regular .bc-oferte-campanie__price-int {
        font-size: 28px;
        line-height: 30px;
    }
    .bc-oferte-campanie__card-price-regular .bc-oferte-campanie__price-dec,
    .bc-oferte-campanie__card-price-regular .bc-oferte-campanie__price-cur {
        font-size: 16px;
        line-height: 20px;
    }
}

.bc-oferte-campanie__card-per-person {
    margin: 0;
    color: var(--bc-dark-grey);
    font-family: var(--bc-font-body);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .bc-oferte-campanie__card-per-person {
        font-size: 16px;
    }
}

/* CTA */
.bc-oferte-campanie__card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 10px 24px;
    border: none;
    border-radius: 100px;
    background-color: var(--bc-pink) !important;
    color: #fff;
    font-family: var(--bc-font-body);
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    text-decoration: none;
    opacity: 1;
    transition: opacity 0.15s ease-in-out, background-color 0.15s ease-in-out;
    margin-top: auto;
}

.bc-oferte-campanie__card-cta:hover,
.bc-oferte-campanie__card-cta:focus {
    background: var(--bc-hot-pink);
    color: #fff;
    opacity: 0.7;
}

.bc-oferte-campanie__card-cta:disabled {
    opacity: 0.7;
    cursor: wait;
}

.bc-oferte-campanie__card-cta-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .bc-oferte-campanie__card-cta-icon {
        width: 24px;
        height: 24px;
    }
}

.bc-oferte-campanie__card-cta-spin {
    animation: bc-oferte-campanie-spin 1s linear infinite;
}

@keyframes bc-oferte-campanie-spin {
    to { transform: rotate(360deg); }
}

/* ===========================================
   Disclaimer card
   =========================================== */
.bc-oferte-campanie__disclaimer {
    background: #fff;
    border: 1px solid var(--bc-medium-grey);
    border-radius: 8px;
    padding: 24px;
}

@media (min-width: 768px) {
    .bc-oferte-campanie__disclaimer {
        padding: 48px;
    }
}

.bc-oferte-campanie__disclaimer-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.bc-oferte-campanie__disclaimer-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--bc-pink);
}

.bc-oferte-campanie__disclaimer-title {
    margin: 0;
    color: var(--bc-black);
    font-family: var(--bc-font-heading);
    font-weight: 400;
    font-size: 20px !important;
    line-height: 1.25;
}

@media (min-width: 768px) {
    .bc-oferte-campanie__disclaimer-title {
        font-size: 24px !important;
        line-height: 30px;
    }
}

.bc-oferte-campanie__disclaimer-intro {
    margin: 0 0 24px;
    padding-bottom: 24px;
    color: var(--bc-black);
    font-family: var(--bc-font-body);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .bc-oferte-campanie__disclaimer-intro {
        font-size: 22px;
        line-height: 30px;
    }
}

.bc-oferte-campanie__disclaimer-terms {
    color: var(--bc-dark-grey);
    font-family: var(--bc-font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    border-bottom: 1px solid var(--bc-medium-grey);
    padding-bottom: 24px;
}

@media (min-width: 768px) {
    .bc-oferte-campanie__disclaimer-terms {
        font-size: 18px;
        line-height: 30px;
    }
}

.bc-oferte-campanie__disclaimer-terms ol {
    margin: 0;
    padding-left: 24px;
}

.bc-oferte-campanie__disclaimer-terms li {
    margin-bottom: 8px;
}

.bc-oferte-campanie__disclaimer-terms li:last-child {
    margin-bottom: 0;
}

.bc-oferte-campanie__disclaimer-footer {
    margin-top: 24px;
    color: var(--bc-dark-grey);
    font-family: var(--bc-font-body);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .bc-oferte-campanie__disclaimer-footer {
        font-size: 16px;
    }
}

.bc-oferte-campanie__disclaimer-footer p {
    margin: 0;
}

.bc-oferte-campanie__disclaimer-footer a {
    color: var(--bc-hot-pink);
    font-weight: 700;
    text-decoration: underline;
}

.bc-oferte-campanie__disclaimer-footer a:hover {
    text-decoration: none;
}
