/* =========================================================
   BEE-COSMETICS.CSS — página de catálogo da Bee Cosmetics
   Base compartilhada: /assets/css/main.css (carregado antes)
   Escopo: .bee-cat-* — layout tipo vitrine editorial
========================================================= */

/* ==========  HERO  ========== */
.bee-cat-hero {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    overflow: hidden;
    background: linear-gradient(170deg, var(--black) 0%, #221514 40%, var(--terracota-dark) 100%);
    color: var(--white);
}
.bee-cat-hero-bg {
    position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(ellipse 900px 600px at 85% 25%, rgba(196,162,101,0.18), transparent 60%),
        radial-gradient(ellipse 700px 500px at 10% 85%, rgba(155,68,66,0.35), transparent 65%);
}
.bee-cat-hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
}
.bee-cat-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(196,162,101,0.14);
    border: 1px solid rgba(196,162,101,0.3);
    color: var(--gold-light);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 100px;
    margin-bottom: 24px;
}
.bee-cat-hero-badge-dot {
    display: inline-block;
    width: 7px; height: 7px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(196,162,101,0.7);
    animation: bee-pulse 2.4s ease-in-out infinite;
}
@keyframes bee-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.55; transform: scale(1.15); }
}
.bee-cat-hero-title {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 5.2vw, 4rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--white);
}
.bee-cat-hero-title em {
    font-style: italic;
    color: var(--gold-light);
    display: block;
}
.bee-cat-hero-sub {
    font-size: 1.08rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.65;
    margin-bottom: 28px;
    max-width: 640px;
    font-weight: 300;
}
.bee-cat-hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}
.bee-cat-hero-pill {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    color: var(--white);
    padding: 9px 18px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    backdrop-filter: blur(6px);
}
.bee-cat-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}
.bee-cat-hero-cta .btn-outline {
    border: 1px solid rgba(255,255,255,0.4);
    color: var(--white);
    background: transparent;
}
.bee-cat-hero-cta .btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

/* ==========  ROTINA  ========== */
.bee-cat-routine {
    padding: 100px 0;
    background: var(--nude-ultra);
}
.bee-cat-routine-intro {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}
.bee-cat-routine-intro .section-desc {
    margin-top: 14px;
    color: var(--text-muted);
}
.bee-cat-routine-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.bee-cat-routine-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s var(--ease);
    border: 1px solid rgba(155,68,66,0.06);
    position: relative;
    overflow: hidden;
}
.bee-cat-routine-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(196,162,101,0.05), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}
.bee-cat-routine-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(155,68,66,0.1);
    border-color: var(--gold);
}
.bee-cat-routine-card:hover::before { opacity: 1; }
.bee-cat-routine-icon {
    font-size: 2.6rem;
    margin-bottom: 18px;
    position: relative;
}
.bee-cat-routine-card h3 {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--black);
    position: relative;
}
.bee-cat-routine-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 22px;
    position: relative;
}
.bee-cat-routine-card p strong {
    color: var(--terracota);
    font-weight: 600;
}
.bee-cat-routine-products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--text-muted);
    position: relative;
}
.bee-cat-routine-products span {
    padding: 5px 11px;
    background: var(--nude-light);
    border-radius: 100px;
    font-weight: 400;
}

/* ==========  CATÁLOGO (VITRINE)  ========== */
.bee-cat-products {
    padding: 120px 0;
    background: var(--white);
}
.bee-cat-products-intro {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 50px;
}
.bee-cat-products-intro .section-desc {
    margin-top: 14px;
    color: var(--text-muted);
}

/* Filtros */
.bee-cat-filter-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 60px;
    padding: 0 16px;
}
.bee-cat-filter-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-light);
    padding: 10px 22px;
    border-radius: 100px;
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}
.bee-cat-filter-btn:hover {
    border-color: var(--terracota);
    color: var(--terracota);
}
.bee-cat-filter-btn.active {
    background: var(--terracota);
    color: var(--white);
    border-color: var(--terracota);
    box-shadow: 0 4px 16px rgba(155,68,66,0.22);
}

/* Grid — modo vitrine (cards maiores) */
.bee-cat-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}

/* Cards populados pelo bee-catalog.js vêm com classe .bee-product-card
   Sobrescrevemos o tamanho aqui no contexto showcase */
.bee-cat-products-grid .bee-product-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.45s var(--ease);
    position: relative;
}
.bee-cat-products-grid .bee-product-card:hover {
    transform: translateY(-10px);
    border-color: var(--terracota);
    box-shadow: 0 24px 56px rgba(155,68,66,0.14);
}
.bee-cat-products-grid .bee-product-card:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}
.bee-cat-products-grid .bee-product-img {
    aspect-ratio: 1 / 1;
    width: 100%;
    background: linear-gradient(165deg, var(--nude-ultra), var(--nude-light));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    position: relative;
    overflow: hidden;
}
.bee-cat-products-grid .bee-product-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.6), transparent 65%);
    pointer-events: none;
}
.bee-cat-products-grid .bee-product-img img {
    max-width: 78%;
    max-height: 78%;
    object-fit: contain;
    transition: transform 0.55s var(--ease);
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.08));
    position: relative;
    z-index: 1;
}
.bee-cat-products-grid .bee-product-card:hover .bee-product-img img {
    transform: scale(1.06);
}
.bee-cat-products-grid .bee-product-tag-float {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--terracota);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: lowercase;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(155,68,66,0.24);
}
.bee-cat-products-grid .bee-product-info {
    padding: 26px 24px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
}
.bee-cat-products-grid .product-type {
    font-size: 0.68rem;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.bee-cat-products-grid .bee-product-info h4 {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    line-height: 1.15;
    margin-bottom: 2px;
}
.bee-cat-products-grid .bee-product-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.55;
    margin-bottom: 10px;
    flex: 1;
}
.bee-cat-products-grid .bee-product-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
    margin-bottom: 18px;
}
.bee-cat-products-grid .bee-product-pill {
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}
.bee-cat-products-grid .bee-product-pill--tag {
    background: var(--nude-light);
    color: var(--terracota);
}
.bee-cat-products-grid .bee-product-pill--ph {
    background: rgba(196,162,101,0.12);
    color: var(--gold);
}
.bee-cat-products-grid .bee-product-actions {
    margin-top: auto;
}
.bee-cat-products-grid .btn-mini {
    width: 100%;
    background: transparent;
    color: var(--terracota);
    border: 1px solid var(--terracota);
    padding: 11px 14px;
    border-radius: 100px;
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.bee-cat-products-grid .btn-mini:hover {
    background: var(--terracota);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(155,68,66,0.22);
}

/* Skeleton loader para lazy cards */
.bee-cat-products-grid--loading::before {
    content: 'Carregando catálogo…';
    display: block;
    padding: 40px;
    color: var(--text-muted);
    text-align: center;
    font-style: italic;
}

/* ==========  GUIA  ========== */
.bee-cat-guide {
    padding: 100px 0;
    background: linear-gradient(165deg, var(--black), #1C1110 80%);
    color: var(--white);
    position: relative;
}
.bee-cat-guide-intro {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}
.bee-cat-guide-intro .section-label { color: var(--gold-light); }
.bee-cat-guide-intro .section-title { color: var(--white); }
.bee-cat-guide-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.bee-cat-guide-step {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: left;
    transition: all 0.4s var(--ease);
}
.bee-cat-guide-step:hover {
    background: rgba(196,162,101,0.08);
    border-color: var(--gold);
    transform: translateY(-6px);
}
.bee-cat-guide-num {
    font-family: var(--serif);
    font-size: 2.4rem;
    font-weight: 500;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 14px;
    font-style: italic;
}
.bee-cat-guide-step h3 {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.bee-cat-guide-step p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.6;
}

/* ==========  ONDE COMPRAR  ========== */
.bee-cat-buy {
    padding: 100px 0;
    background: var(--nude-ultra);
}
.bee-cat-buy-inner {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}
.bee-cat-buy-inner .section-desc {
    margin: 14px auto 40px;
    color: var(--text-muted);
    max-width: 540px;
}
.bee-cat-buy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 44px;
}
.bee-cat-buy-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 40px 28px;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.04);
    text-decoration: none;
    color: var(--black);
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}
.bee-cat-buy-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(196,162,101,0.08), transparent);
    opacity: 0;
    transition: opacity 0.35s;
}
.bee-cat-buy-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(196,162,101,0.18);
}
.bee-cat-buy-card:hover::before { opacity: 1; }
.bee-cat-buy-logo {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--terracota);
    letter-spacing: 0.02em;
    z-index: 1;
}
.bee-cat-buy-label {
    font-size: 0.82rem;
    color: var(--text-light);
    z-index: 1;
}
.bee-cat-buy-arrow {
    font-size: 1.1rem;
    color: var(--gold);
    transition: transform 0.3s;
    z-index: 1;
}
.bee-cat-buy-card:hover .bee-cat-buy-arrow {
    transform: translateX(5px);
}

/* ==========  CTA FINAL  ========== */
.bee-cat-cta-final {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--terracota), var(--terracota-dark));
    color: var(--white);
    text-align: center;
}
.bee-cat-cta-inner .section-title {
    color: var(--white);
    max-width: 660px;
    margin: 14px auto 18px;
}
.bee-cat-cta-sub {
    color: rgba(255,255,255,0.72);
    max-width: 520px;
    margin: 0 auto 32px;
    font-size: 1rem;
    line-height: 1.6;
}
.bee-cat-cta-btns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}
.bee-cat-cta-btns .btn-outline-white {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.45);
    color: var(--white);
}
.bee-cat-cta-btns .btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

/* ==========  RESPONSIVE  ========== */
@media (max-width: 1024px) {
    .bee-cat-routine-grid { grid-template-columns: 1fr 1fr; }
    .bee-cat-products-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .bee-cat-guide-steps { grid-template-columns: repeat(2, 1fr); }
    .bee-cat-buy-grid { grid-template-columns: 1fr; max-width: 440px; margin: 44px auto 0; }
}

@media (max-width: 768px) {
    .bee-cat-hero { padding: 120px 0 80px; min-height: auto; }
    .bee-cat-hero-title { font-size: clamp(1.9rem, 7vw, 2.6rem); }
    .bee-cat-hero-sub { font-size: 0.95rem; }
    .bee-cat-hero-cta { flex-direction: column; width: 100%; }
    .bee-cat-hero-cta .btn { width: 100%; justify-content: center; }

    .bee-cat-routine { padding: 70px 0; }
    .bee-cat-routine-grid { grid-template-columns: 1fr; gap: 18px; }

    .bee-cat-products { padding: 80px 0; }
    .bee-cat-products-grid { grid-template-columns: 1fr; gap: 20px; }
    .bee-cat-filter-bar { gap: 6px; margin-bottom: 36px; }
    .bee-cat-filter-btn { padding: 8px 16px; font-size: 0.78rem; }

    .bee-cat-guide { padding: 70px 0; }
    .bee-cat-guide-steps { grid-template-columns: 1fr; gap: 16px; }

    .bee-cat-buy { padding: 70px 0; }

    .bee-cat-cta-final { padding: 80px 0; }
    .bee-cat-cta-btns { flex-direction: column; width: 100%; max-width: 360px; margin: 0 auto; }
    .bee-cat-cta-btns .btn { width: 100%; justify-content: center; }
}
