/**
 * Oferte Beauty Duo — page template styles.
 * All selectors scoped under #bc-oferte-beauty-duo.
 * Uses global.css design tokens.
 */

/* ===========================================
   Layout Container
   =========================================== */
#bc-oferte-beauty-duo {
    font-family: var(--bc-font-body);
    color: #000;
}

/* ===========================================
   Hero
   =========================================== */
#bc-oferte-beauty-duo .bc-oferte-hero {
    overflow: hidden;
}

#bc-oferte-beauty-duo .bc-oferte-hero__img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ===========================================
   Product Cards Grid
   =========================================== */
#bc-oferte-beauty-duo .bc-oferte-products {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1rem;
}

#bc-oferte-beauty-duo .bc-oferte-products__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    #bc-oferte-beauty-duo .bc-oferte-products {
        padding: 3rem 1.5rem;
    }

    #bc-oferte-beauty-duo .bc-oferte-products__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===========================================
   Product Card
   =========================================== */
#bc-oferte-beauty-duo .bc-oferte-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-top-right-radius: 2rem;
    border-bottom-left-radius: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s;
}

#bc-oferte-beauty-duo .bc-oferte-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Badge (circular, absolute) */
#bc-oferte-beauty-duo .bc-oferte-card__badge {
    position: absolute;
    top: -9px;
    left: -9px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #000;
    color: var(--bc-pink);
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid #fff;
}

@media (min-width: 1024px) {
    #bc-oferte-beauty-duo .bc-oferte-card__badge {
        top: -12px;
        left: -12px;
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }
}

/* Image wrapper */
#bc-oferte-beauty-duo .bc-oferte-card__image-wrap {
    position: relative;
    margin: 0.5rem;
    border-top-right-radius: 2rem;
    border-bottom-left-radius: 2rem;
    overflow: hidden;
    background: linear-gradient(to bottom right, #262626, #404040);
}

#bc-oferte-beauty-duo .bc-oferte-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

#bc-oferte-beauty-duo .bc-oferte-card:hover .bc-oferte-card__image {
    transform: scale(1.05);
}

/* Text overlay on image */
#bc-oferte-beauty-duo .bc-oferte-card__image-text {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1.25rem 0 0.75rem;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.3) 20%,
        rgba(0, 0, 0, 0.2) 40%,
        rgba(0, 0, 0, 0.1) 60%,
        transparent 100%
    );
}

#bc-oferte-beauty-duo .bc-oferte-card__image-text p {
    margin: 0;
    text-align: center;
    font-weight: 600;
    color: #fff;
    font-size: 1.25rem;
    line-height: 1;
}

@media (min-width: 1024px) {
    #bc-oferte-beauty-duo .bc-oferte-card__image-text p {
        font-size: 1.75rem;
    }
}
#bc-oferte-beauty-duo h1 {
    font-size: 3.5rem;
    margin: 0 0 0.5rem;
}
@media (max-width: 890px) {
    #bc-oferte-beauty-duo h1 {
        font-size: 2.5rem;
    }
}
/* Card content */
#bc-oferte-beauty-duo .bc-oferte-card__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    padding: 1rem;
}

#bc-oferte-beauty-duo .bc-oferte-card__subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0 0 0.25rem;
}

#bc-oferte-beauty-duo .bc-oferte-card__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom:15px;
}
#bc-oferte-beauty-duo .bc-oferte-card h2,
#bc-oferte-beauty-duo .bc-oferte-card__title,
#bc-oferte-beauty-duo .bc-oferte-card__price-original {
    font-family: "Mulish", Sans-serif !important;
}
#bc-oferte-beauty-duo .bc-oferte-card h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}
@media (min-width: 640px) {
    #bc-oferte-beauty-duo .bc-oferte-card__title {
        font-size: 1.125rem;
    }
}

/* Price block */
#bc-oferte-beauty-duo .bc-oferte-card__price-block {
    margin-bottom: 1rem;
}

@media (min-width: 1280px) {
    #bc-oferte-beauty-duo .bc-oferte-card__price-block {
        display: flex;
        align-items: baseline;
        gap: 1rem;
    }
}

#bc-oferte-beauty-duo .bc-oferte-card__price {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: var(--bc-pink);
}

#bc-oferte-beauty-duo .bc-oferte-card__price-original {
    display: block;
    font-size: 1.4rem;
    text-decoration: line-through;
}

#bc-oferte-beauty-duo .bc-oferte-card__price-suffix {
    font-size: 0.75em;
}

/* CTA Button */
#bc-oferte-beauty-duo .bc-oferte-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.5rem 0.25rem;
    border: none;
    border-radius: 0.75rem;
    background: linear-gradient(to right, #f43f5e, #d946ef);
    color: #000;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

#bc-oferte-beauty-duo .bc-oferte-card__cta:hover {
    background: linear-gradient(to right, #e11d48, #c026d3);
}

#bc-oferte-beauty-duo .bc-oferte-card__cta:disabled {
    opacity: 0.7;
    cursor: wait;
}

@media (min-width: 1024px) {
    #bc-oferte-beauty-duo .bc-oferte-card__cta {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* Spinner animation for loading state */
#bc-oferte-beauty-duo .bc-oferte-spin {
    animation: bc-oferte-spin 1s linear infinite;
}

@keyframes bc-oferte-spin {
    to { transform: rotate(360deg); }
}

/* ===========================================
   Locations
   =========================================== */
#bc-oferte-beauty-duo .bc-oferte-locations {
    border-top: 1px solid #d4d4d4;
    padding: 3rem 1rem;
}

#bc-oferte-beauty-duo .bc-oferte-locations__grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    #bc-oferte-beauty-duo .bc-oferte-locations__grid {
        flex-direction: row;
        justify-content: center;
    }
}

#bc-oferte-beauty-duo .bc-oferte-locations__card {
    width: 100%;
    max-width: 428px;
    padding: 1.25rem;
    border-radius: 1rem;
    border: 1px solid #333;
    background: #141414;
    color: #fff;
}

#bc-oferte-beauty-duo .bc-oferte-locations__city {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-family: var(--bc-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
}

#bc-oferte-beauty-duo .bc-oferte-locations__city span {
    color: var(--bc-pink);
}

#bc-oferte-beauty-duo .bc-oferte-locations__address {
    font-size: 0.875rem;
    margin: 0;
}

#bc-oferte-beauty-duo .bc-oferte-locations__phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    color: #fff;
    text-decoration: none;
}

#bc-oferte-beauty-duo .bc-oferte-locations__phone:hover {
    text-decoration: underline;
}

/* ===========================================
   FAQ
   =========================================== */
#bc-oferte-beauty-duo .bc-oferte-faq {
    border-top: 1px solid #d4d4d4;
    padding: 4rem 1rem;
}

#bc-oferte-beauty-duo .bc-oferte-faq__inner {
    max-width: 1024px;
    margin: 0 auto;
}

#bc-oferte-beauty-duo .bc-oferte-faq__heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 2rem;
}

@media (min-width: 640px) {
    #bc-oferte-beauty-duo .bc-oferte-faq__heading {
        font-size: 1.875rem;
    }
}

#bc-oferte-beauty-duo .bc-oferte-faq__list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

#bc-oferte-beauty-duo .bc-oferte-faq__item {
    border: 1px solid #333;
    border-top-right-radius: 2rem;
    border-bottom-left-radius: 2rem;
    padding: 1.25rem;
    background: #171717;
    color: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

#bc-oferte-beauty-duo .bc-oferte-faq__item summary {
    cursor: pointer;
    list-style: none;
    font-size: 1rem;
    font-weight: 600;
}

#bc-oferte-beauty-duo .bc-oferte-faq__item summary::-webkit-details-marker {
    display: none;
}

#bc-oferte-beauty-duo .bc-oferte-faq__answer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
    font-size: 0.875rem;
}

#bc-oferte-beauty-duo .bc-oferte-faq__answer p {
    margin: 0.5rem 0 0;
}

#bc-oferte-beauty-duo .bc-oferte-faq__answer ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
}

#bc-oferte-beauty-duo .bc-oferte-faq__answer li {
    margin-top: 0.25rem;
}

/* ===========================================
   Disclaimer
   =========================================== */
#bc-oferte-beauty-duo .bc-oferte-disclaimer {
    border-top: 1px solid #d4d4d4;
    padding: 3rem 1rem;
}

#bc-oferte-beauty-duo .bc-oferte-disclaimer__inner {
    max-width: 1024px;
    margin: 0 auto;
}

#bc-oferte-beauty-duo .bc-oferte-disclaimer__header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

#bc-oferte-beauty-duo .bc-oferte-disclaimer__header > svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
    color: #a3a3a3;
}

#bc-oferte-beauty-duo .bc-oferte-disclaimer__header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #a3a3a3;
    margin: 0;
}

#bc-oferte-beauty-duo .bc-oferte-disclaimer__header p {
    font-size: 0.75rem;
    color: #737373;
    margin: 0.25rem 0 0;
}

#bc-oferte-beauty-duo .bc-oferte-disclaimer__body {
    border: 1px solid rgba(209, 213, 219, 0.6);
    border-radius: 1rem;
    padding: 1.5rem;
}

@media (min-width: 640px) {
    #bc-oferte-beauty-duo .bc-oferte-disclaimer__body {
        padding: 2rem;
    }
}

#bc-oferte-beauty-duo .bc-oferte-disclaimer__body ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#bc-oferte-beauty-duo .bc-oferte-disclaimer__body li {
    display: flex;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #404040;
}

#bc-oferte-beauty-duo .bc-oferte-disclaimer__body li > span:first-child {
    flex-shrink: 0;
    font-weight: 600;
    color: #a3a3a3;
}

#bc-oferte-beauty-duo .bc-oferte-disclaimer__footer-note {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(23, 23, 23, 0.3);
}

#bc-oferte-beauty-duo .bc-oferte-disclaimer__footer-note p {
    font-size: 0.75rem;
    color: #737373;
    margin: 0;
}

#bc-oferte-beauty-duo .bc-oferte-disclaimer__footer-note a {
    color: #fb7185;
    text-decoration: none;
}

#bc-oferte-beauty-duo .bc-oferte-disclaimer__footer-note a:hover {
    text-decoration: underline;
}
