/*
Theme Name: AfiliadoTheme
Theme URI: 
Author: Antigravity Assistant
Author URI: 
Description: Um tema focado em conversão de links de afiliado com visual de e-commerce moderno.
Version: 1.0.78
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.0
Text Domain: afiliadotheme
*/

/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
	--color-primary: #2D6CDF;
	--color-light: #6FA3FF;
	--color-dark: #1E4FA8;
	--color-soft: #F4F7FB; /* Cor de fundo da home */
	--color-bg: #FFFFFF;
	--color-text: #555555; /* Texto mais suave para subcategorias */
	--color-title: #111111;
	
	--color-buy-button: #318a47; /* Verde do botão (baseado no layout) */
	--color-buy-button-hover: #267138;
}

/* ==========================================================================
   Base Reset
   ========================================================================== */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	background-color: var(--color-soft); /* Fundo geral claro */
	color: var(--color-text);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	color: var(--color-title);
	font-weight: 700;
	line-height: 1.3;
}

a {
	color: var(--color-primary);
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover {
	color: var(--color-dark);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

.container {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
	background-color: var(--color-bg);
	padding: 20px 0;
	position: sticky;
	top: 0;
	z-index: 100;
    /* Remover borda pra ficar limpo e botar sombra bem suave */
	box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-title);
}
.logo-link:hover { color: var(--color-title); }

.site-bag-icon {
    stroke: var(--color-title);
}

.site-influencer-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--aft-pink);
    flex-shrink: 0;
}

.site-title-text {
	font-size: 1.6rem;
	font-weight: 800;
	margin: 0;
    letter-spacing: -0.5px;
}

.custom-logo-wrapper img, .custom-logo {
    max-height: 40px;
    width: auto;
    display: block;
}

.main-navigation ul, .main-navigation div > ul {
	list-style: none;
	display: flex;
	gap: 25px;
    margin: 0;
    padding: 0;
}

.main-navigation a {
	color: var(--color-text);
	font-weight: 500;
    font-size: 1rem;
}

.main-navigation a:hover {
	color: var(--color-title);
}

/* ==========================================================================
   PERFIL DA INFLUENCER
   ========================================================================== */
.influencer-profile {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 50px 0 40px;
}

.influencer-photo-wrap {
    flex-shrink: 0;
}

.influencer-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--color-primary);
    box-shadow: 0 0 0 6px rgba(45, 108, 223, 0.1);
}

.influencer-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.influencer-name {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-title);
    margin: 0;
    line-height: 1.1;
}

.influencer-niche {
    display: inline-block;
    background: var(--color-soft);
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(45,108,223,0.2);
    width: fit-content;
}

.influencer-bio {
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    max-width: 520px;
}

.influencer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 6px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff !important;
    background-color: var(--social-color, #333);
    transition: filter 0.2s ease, transform 0.1s ease;
}
.social-btn:hover {
    filter: brightness(0.88);
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .influencer-profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 40px 0 30px;
    }
    .influencer-niche,
    .influencer-socials {
        justify-content: center;
    }
    .influencer-bio {
        text-align: center;
    }
}

/* ==========================================================================
   FRONT PAGE - HERO & CATEGORIAS (4 COLUNAS)
   ========================================================================== */
.home-hero {
    text-align: center;
    padding: 60px 0 40px;
}

.hero-title {
    font-size: 2.5rem;
    color: var(--color-title);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* 4 columns grid for Home Categories */
.categories-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 24px;
    margin-bottom: 50px;
}

@media (min-width: 992px) {
	.categories-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.category-card {
	background-color: var(--color-bg);
	border-radius: 12px;
	overflow: hidden;
    position: relative;
    border: 1px solid rgba(0,0,0,0.04);
}

/* Remove hover scale to match cleaner look */
.category-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.category-thumbnail {
	background-color: #ffffff;
    height: 180px; 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.category-thumbnail img {
    max-height: 100%;
    object-fit: contain;
}

.category-info {
	padding: 20px;
}

.category-title {
	font-size: 1.25rem;
	margin-bottom: 5px;
    color: var(--color-title);
}

.category-desc {
    font-size: 0.9rem;
    color: var(--color-text);
    margin: 0;
}

/* ==========================================================================
   OFERTA POPULAR BANNER (HOME)
   ========================================================================== */
.oferta-popular {
    margin-bottom: 20px;
}

.oferta-inner {
    background-color: var(--color-bg);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(0,0,0,0.04);
}

.oferta-badge {
    font-size: 0.85rem;
    font-weight: 700;
    color: #4a5568;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.oferta-title {
    font-size: 1.5rem;
    color: var(--color-title);
    margin: 0;
    max-width: 400px;
}

.oferta-action {
    display: flex;
    align-items: center;
    gap: 20px;
}

.oferta-img {
    max-height: 80px;
    border-radius: 6px;
}
.oferta-img-placeholder {
    font-size: 2.5rem;
    opacity: 0.5;
}

/* Green Button */
.green-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-buy-button);
    color: #ffffff !important;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.2s ease;
}
.green-btn:hover { background-color: var(--color-buy-button-hover); }

.site-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 60px;
}

/* ==========================================================================
   ARCHIVE / REGULAR POSTS GRID (3 COLUNAS)
   ========================================================================== */
.site-main:not(.home) { padding: 40px 0; }
.page-header { margin-bottom: 30px; }

.products-grid {
	display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
@media (min-width: 640px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
@media (min-width: 1024px) {
    .products-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}

.products-empty {
    color: #adb5bd;
    text-align: center;
    padding: 32px;
    font-size: 0.9rem;
}

.home-products-section {
    padding: 32px 0 40px;
}

/* ── Product card — estilo wepink ─────────────────────────────────────── */

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: transform 0.2s, box-shadow 0.2s;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.13);
}

/* Thumb wrap com position relative para o badge */
.product-thumb-wrap {
    position: relative;
    overflow: hidden;
}
.product-thumbnail {
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f8f8f8;
}
.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.product-card:hover .product-thumbnail img {
    transform: scale(1.04);
}

/* Badge de plataforma na foto (canto superior direito) */
.product-platform-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 9px;
    border-radius: 20px;
    color: #fff;
    background: var(--color-primary);
    pointer-events: none;
    box-shadow: 0 0 0 2px #fff, 0 2px 8px rgba(0,0,0,.3);
}
.platform-badge--mercadolivre { background: #FFE600; color: #333; }
.platform-badge--shopee        { background: #EE4D2D; }
.platform-badge--tiktok        { background: #010101; }
.platform-badge--amazon        { background: #FF9900; color: #111; }

/* Conteúdo do card */
.product-info {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 12px;
}
.product-title {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-title a { color: #1a1a1a; }
.product-title a:hover { color: var(--color-primary); }

/* Botão único "Ver Oferta" */
.btn-ver-oferta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 12px;
    background: var(--color-buy-button);
    color: #fff !important;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 8px;
    text-align: center;
    transition: background 0.2s, transform 0.1s;
    cursor: pointer;
}
.btn-ver-oferta:hover {
    background: var(--color-buy-button-hover);
    transform: scale(1.02);
}
.btn-ver-oferta span { font-size: 1rem; }

/* Mantém compatibilidade com btn-buy-small existente */
.btn-buy-small {
    background-color: var(--color-buy-button);
    color: #ffffff !important;
    border: 1px solid var(--color-buy-button);
}
.btn-buy-small:hover {
    background-color: var(--color-buy-button-hover);
    border-color: var(--color-buy-button-hover);
}

.btn-details {
    background-color: #ffffff;
    color: var(--color-text);
    border: 1px solid #d1d9e6;
}
.btn-details:hover {
    background-color: #f1f5f9;
    color: var(--color-title);
    border-color: #cbd5e1;
}

.btn-buy {
	display: inline-block; background-color: var(--color-buy-button); color: #ffffff !important;
	padding: 12px 20px; border-radius: 6px; text-align: center; font-weight: 600; text-transform: uppercase; font-size: 0.95rem;
}

/* ==========================================================================
   SINGLE PRODUCT PAGE (E-COMMERCE STYLE)
   ========================================================================== */
.single-product-page {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    margin-bottom: 40px;
}

.product-top-row {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 50px;
}

@media (min-width: 768px) {
    .product-top-row {
        flex-direction: row;
    }
    .product-gallery-col {
        flex: 1;
        max-width: 50%;
    }
    .product-info-col {
        flex: 1;
    }
}

.product-main-image {
    background: #f8fafc;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    border: 1px solid #e2e8f0;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-main-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: opacity 0.3s;
}

.product-gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.gallery-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.7;
    transition: all 0.2s;
}

.gallery-thumb:hover {
    opacity: 1;
}

.gallery-thumb.active {
    border-color: var(--color-primary);
    opacity: 1;
}

.product-info-col .entry-title {
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 15px;
    line-height: 1.2;
}

.product-short-desc {
    color: #475569;
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.product-buy-action {
    background: #f8fafc;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.onde-comprar-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8;
    margin: 0 0 12px;
}

/* Botões de plataforma (single.php) */
.platform-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-platform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    transition: filter 0.2s ease, transform 0.1s ease;
    color: #ffffff !important;
}
.btn-platform:hover {
    filter: brightness(0.9);
    transform: translateY(-1px);
}
.btn-platform:active {
    transform: translateY(0);
}

.btn-ml      { background-color: #FFE600; color: #333333 !important; }
.btn-shopee  { background-color: #EE4D2D; }
.btn-tiktok  { background-color: #010101; }
.btn-generic { background-color: var(--color-primary); }

/* Badges de plataforma (archive.php) */
.product-platform-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 10px;
}

.platform-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.platform-badge--ml      { background-color: #cc9800; color: #fff; }
.platform-badge--shopee  { background-color: #EE4D2D; }
.platform-badge--tiktok  { background-color: #010101; }
.platform-badge--generic { background-color: var(--color-primary); }

.section-title {
    font-size: 1.5rem;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* FAQ Accordion */
.faq-accordion {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
}
.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 15px 20px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1.05rem;
    color: var(--color-title);
    list-style: none; /* Hide default triangle in clear browsers */
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-primary);
}
.faq-item[open] .faq-question::after {
    content: '-';
}

.faq-answer {
    padding: 0 20px 20px;
    color: var(--color-text);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
	background-color: var(--color-dark);
	color: #ffffff;
	padding: 60px 0 20px;
}
.site-footer a { color: var(--color-light); }
.site-footer a:hover { color: #ffffff; }
.site-footer h4.widget-title { color: #ffffff; font-size: 1.2rem; margin-bottom: 20px; }
.footer-widgets {
	display: grid; grid-template-columns: 1fr; gap: 30px; margin-bottom: 40px;
}
@media (min-width: 576px) { .footer-widgets { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .footer-widgets { grid-template-columns: repeat(4, 1fr); } }
.widget ul { list-style: none; }
.widget ul li { margin-bottom: 10px; }
.site-info { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; text-align: center; font-size: 0.9rem; color: var(--color-soft); }

/* ==========================================================================
   Carousel Widget Styles
   ========================================================================== */
.aft-carousel-wrapper {
    position: relative;
    max-width: 100%;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.aft-carousel-slides {
    position: relative;
    width: 100%;
    background: var(--color-soft);
}

.aft-carousel-slide {
    display: none;
    width: 100%;
}

.aft-carousel-slide.active {
    display: block;
    animation: afiFadeIn 0.5s ease-out forwards;
}

.aft-carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@keyframes afiFadeIn {
    from { opacity: 0; transform: scale(0.99); }
    to { opacity: 1; transform: scale(1); }
}

.aft-carousel-prev,
.aft-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.3);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    z-index: 2;
}

.aft-carousel-prev:hover,
.aft-carousel-next:hover {
    background: rgba(0,0,0,0.8);
}

.aft-carousel-prev { left: 10px; }
.aft-carousel-next { right: 10px; }

.aft-carousel-dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.aft-dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: rgba(255,255,255,0.5);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.aft-dot.active, .aft-dot:hover {
    background-color: var(--color-primary);
}

.aft-carousel-caption {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 30px;
    border-radius: 8px;
    max-width: 400px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease 0.3s;
}

.aft-carousel-slide.active .aft-carousel-caption {
    transform: translateY(0);
    opacity: 1;
}

.aft-carousel-caption h3 {
    margin: 0 0 15px 0;
    font-size: 1.5rem;
    color: var(--color-title);
    line-height: 1.3;
}

.aft-carousel-btn {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.aft-carousel-slide a:hover .aft-carousel-btn {
    background: var(--color-dark);
}

@media (max-width: 768px) {
    .aft-carousel-caption {
        bottom: 30px; 
        left: 15px; 
        right: 15px; 
        max-width: auto; 
        padding: 15px; 
        text-align: center;
    }
    .aft-carousel-caption h3 { font-size: 1.2rem; }
}

/* ==========================================================================
   COLEÇÕES — HOME GRID
   ========================================================================== */
.home-colecoes {
    margin-bottom: 50px;
}

/* Título de seção — estilo wepink (grande, colorido, centralizado) */
.section-heading-wepink {
    font-size: 2rem;
    font-weight: 800;
    font-style: italic;
    color: var(--color-primary);
    text-align: center;
    margin: 0 0 28px;
    letter-spacing: -0.5px;
}
@media (max-width: 600px) {
    .section-heading-wepink { font-size: 1.5rem; }
}

/* Manter heading antigo para seções internas */
.section-heading {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-title);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.section-heading::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, var(--color-primary), transparent);
    border-radius: 2px;
}

.colecoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}
@media (min-width: 992px) {
    .colecoes-grid { grid-template-columns: repeat(3, 1fr); }
}

.colecao-card {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-bg);
    border: 1px solid #e1e8f0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.colecao-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.colecao-thumb {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--color-soft);
    display: flex;
    align-items: center;
    justify-content: center;
}
.colecao-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.colecao-card:hover .colecao-thumb img {
    transform: scale(1.05);
}
.colecao-thumb-placeholder {
    font-size: 3rem;
    opacity: 0.4;
}

.colecao-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.colecao-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-title);
    margin: 0;
}
.colecao-count {
    font-size: 0.8rem;
    color: var(--color-text);
}

/* ==========================================================================
   COLEÇÕES — PÁGINA DE ARQUIVO (taxonomy-colecao.php)
   ========================================================================== */
.colecao-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--color-bg);
    border-radius: 12px;
    border: 1px solid #e1e8f0;
}
.colecao-header-img {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
}
.colecao-header-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.colecao-header-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
}
.colecao-header-title {
    font-size: 2rem;
    margin: 6px 0;
    color: var(--color-title);
}
.colecao-header-desc {
    color: var(--color-text);
    margin: 0 0 8px;
}
.colecao-header-count {
    font-size: 0.85rem;
    color: #888;
}
@media (max-width: 600px) {
    .colecao-header { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   LINK NA BIO — PAGE TEMPLATE
   ========================================================================== */
.biolinks-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 40px 16px 60px;
    box-sizing: border-box;
}

.biolinks-card {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.biolinks-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.biolinks-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.3);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.biolinks-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}

.biolinks-niche {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.biolinks-social-icons {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.biolinks-social-icon {
    color: rgba(255,255,255,0.7);
    transition: color 0.2s ease, transform 0.2s ease;
}
.biolinks-social-icon:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.biolinks-nav {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.biolink-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 20px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    box-sizing: border-box;
}
.biolink-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}
.biolink-btn:active {
    transform: translateY(0);
}

.biolink-emoji {
    font-size: 1.2rem;
    line-height: 1;
}

.biolink-platform-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.biolink-title {
    flex: 1;
}

.biolinks-footer {
    margin-top: 40px;
    font-size: 0.75rem;
}
.biolinks-footer a {
    color: rgba(255,255,255,0.3);
    transition: color 0.2s;
}
.biolinks-footer a:hover {
    color: rgba(255,255,255,0.6);
}

/* ==========================================================================
   SINGLE PRODUCT PAGE — wepink-style (sp2-*)
   ========================================================================== */

.sp2-main { background: #fff; padding-bottom: 80px; }

/* Breadcrumb */
.sp2-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: #999;
    padding: 20px 0 28px;
    flex-wrap: wrap;
}
.sp2-breadcrumb a { color: var(--aft-pink, #E91E8C); }
.sp2-breadcrumb a:hover { text-decoration: underline; }
.sp2-bc-current { color: #444; }

/* Product area: 2-col grid */
.sp2-product-area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

/* ── Gallery ── */
.sp2-gallery {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 14px;
    position: sticky;
    top: 80px;
}
.sp2-thumbstrip {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sp2-thumb {
    width: 68px;
    height: 68px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.18s;
}
.sp2-thumb.active,
.sp2-thumb:hover { border-color: var(--aft-pink, #E91E8C); }

.sp2-main-img-wrap {
    border-radius: 14px;
    overflow: hidden;
    background: #f8f2f6;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sp2-main-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Info column ── */
.sp2-info { padding-top: 8px; }

.sp2-breadcrumb-info {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.sp2-breadcrumb-info a { color: var(--aft-pink, #E91E8C); }
.sp2-breadcrumb-info a:hover { text-decoration: underline; }

.sp2-title {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.2;
    color: #1a1a2e;
    margin: 0 0 12px;
}

.sp2-subtitle {
    font-size: 0.97rem;
    color: #666;
    font-style: italic;
    margin: 0 0 24px;
    line-height: 1.5;
}

/* Platform buttons */
.sp2-plat-wrap { margin: 0 0 24px; }
.sp2-where-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #aaa;
    font-weight: 700;
    margin: 0 0 10px;
}
.sp2-plat-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 17px 22px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 0.01em;
    transition: filter 0.18s, transform 0.12s;
}
.sp2-plat-btn:hover { filter: brightness(0.9); transform: translateY(-1px); color: #fff; }
.sp2-plat-btn--ml     { background: #FFE600; color: #222; }
.sp2-plat-btn--ml:hover { color: #222; }
.sp2-plat-btn--shopee  { background: #EE4D2D; }
.sp2-plat-btn--tiktok  { background: #010101; }
.sp2-plat-btn--amazon  { background: #FF9900; color: #111; }
.sp2-plat-btn--amazon:hover { color: #111; }
.sp2-plat-btn--generic { background: var(--aft-pink, #E91E8C); }
.sp2-plat-btn svg { flex-shrink: 0; opacity: 0.7; }

.sp2-safe {
    font-size: 0.75rem;
    color: #999;
    margin: 4px 0 0;
}

/* Características box */
.sp2-features {
    background: var(--aft-pink-soft, #FDE8F4);
    border-radius: 14px;
    padding: 20px 22px;
    margin-top: 8px;
}
.sp2-features-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--aft-pink, #E91E8C);
    margin: 0 0 12px;
    letter-spacing: 0.02em;
}
.sp2-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.sp2-features-list li {
    font-size: 0.88rem;
    color: #8B1A5A;
    font-weight: 600;
    padding-left: 14px;
    position: relative;
    line-height: 1.4;
}
.sp2-features-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--aft-pink, #E91E8C);
}

/* ── Tabs ── */
.sp2-tabs { margin-top: 56px; border-top: 2px solid #f0f0f0; }
.sp2-tab-nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #f0f0f0;
}
.sp2-tab-btn {
    padding: 16px 28px;
    font-size: 0.9rem;
    font-weight: 700;
    background: none;
    border: none;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    color: #888;
    transition: color 0.18s, border-color 0.18s;
    letter-spacing: 0.01em;
}
.sp2-tab-btn.active {
    color: var(--aft-pink, #E91E8C);
    border-bottom-color: var(--aft-pink, #E91E8C);
}
.sp2-tab-btn:hover { color: var(--aft-pink, #E91E8C); }
.sp2-tab-pane { display: none; padding: 36px 0; }
.sp2-tab-pane.active { display: block; }
.sp2-tab-pane .entry-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    max-width: 780px;
}

/* Responsive */
@media (max-width: 900px) {
    .sp2-product-area { grid-template-columns: 1fr; gap: 32px; }
    .sp2-gallery { position: static; }
    .sp2-title { font-size: 1.5rem; }
}
@media (max-width: 600px) {
    .sp2-gallery { grid-template-columns: 56px 1fr; gap: 10px; }
    .sp2-thumb { width: 52px; height: 52px; }
    .sp2-plat-btn { padding: 15px 18px; font-size: 0.92rem; }
    .sp2-tab-btn { padding: 12px 16px; font-size: 0.82rem; }
}

/* ==========================================================================
   HOME WEPINK — v1.0.36
   ========================================================================== */

:root {
    --aft-pink:      #E91E8C;
    --aft-pink-dark: #C2185B;
    --aft-pink-soft: #FDE8F4;
}

/* Announcement bar ─────────────────────────────────────────────────────── */
.aft-announce {
    background: var(--aft-pink);
    color: #fff;
    font-size: 0.83rem;
    font-weight: 600;
    padding: 9px 20px;
    text-align: center;
    letter-spacing: 0.02em;
}
.aft-announce a { color: #fff; text-decoration: underline; opacity: 0.9; }
.aft-announce a:hover { opacity: 1; }

/* Hero ─────────────────────────────────────────────────────────────────── */
.aft-hero {
    background: linear-gradient(140deg, #fff5fb 0%, #ffffff 65%);
    padding: 70px 0 60px;
    overflow: hidden;
}
.aft-hero--bg {
    background: none;
    position: relative;
}
.aft-hero--bg::before {
    content: '';
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.38);
}
.aft-hero--bg .aft-hero-inner { position: relative; }
.aft-hero--bg .aft-hero-title,
.aft-hero--bg .aft-hero-sub   { color: #fff; }
.aft-hero--bg .aft-hero-tag   { background: rgba(255,255,255,0.2); color: #fff; }
.aft-hero-inner {
    display: flex;
    align-items: center;
    gap: 64px;
}
.aft-hero-text { flex: 1; min-width: 0; }

.aft-hero-tag {
    display: inline-block;
    background: var(--aft-pink-soft);
    color: var(--aft-pink);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 18px;
}
.aft-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--color-title);
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -1px;
}
.aft-hero-title em { font-style: italic; color: var(--aft-pink); }

.aft-hero-sub {
    font-size: 1.05rem;
    color: var(--color-text);
    max-width: 420px;
    line-height: 1.7;
    margin-bottom: 32px;
}
.aft-btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--aft-pink);
    color: #fff !important;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(233,30,140,0.28);
}
.aft-btn-hero:hover {
    background: var(--aft-pink-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(233,30,140,0.38);
}

/* Hero visual — collage 2×2 */
.aft-hero-visual {
    flex-shrink: 0;
    width: 320px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    transform: rotate(3deg);
}
.aft-hero-card {
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: 0 8px 30px rgba(0,0,0,0.10);
    background: #f0f0f0;
}
.aft-hero-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.aft-hero-card:nth-child(1) { transform: translateY(-12px); }
.aft-hero-card:nth-child(2) { transform: translateY(12px); }
.aft-hero-card:nth-child(3) { transform: translateY(-6px); }
.aft-hero-card:nth-child(4) { transform: translateY(6px); }

@media (max-width: 900px) {
    .aft-hero-visual { display: none; }
    .aft-hero { padding: 50px 0 40px; }
}
@media (max-width: 600px) {
    .aft-hero { padding: 36px 0 28px; text-align: center; }
    .aft-hero-sub { max-width: 100%; }
}

/* Category strip ───────────────────────────────────────────────────────── */
.aft-cat-strip {
    background: #fff;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    padding: 12px 0;
    overflow-x: auto;
    scrollbar-width: none;
}
.aft-cat-strip::-webkit-scrollbar { display: none; }
.aft-cat-inner {
    display: flex;
    gap: 8px;
    white-space: nowrap;
}
.aft-cat-pill {
    display: inline-flex;
    align-items: center;
    padding: 7px 18px;
    border-radius: 30px;
    background: var(--color-soft);
    color: var(--color-text);
    font-size: 0.86rem;
    font-weight: 600;
    transition: background 0.18s, color 0.18s;
    white-space: nowrap;
    border: 1.5px solid transparent;
}
.aft-cat-pill:hover { background: var(--aft-pink-soft); color: var(--aft-pink); border-color: var(--aft-pink-soft); }
.aft-cat-pill--all  { background: var(--aft-pink); color: #fff !important; }
.aft-cat-pill--all:hover { background: var(--aft-pink-dark); }

/* Category grid section ─────────────────────────────────────────────────── */
.aft-cat-section { padding: 40px 0; }
.aft-cat-grid {
    display: grid;
    gap: 16px;
}
.aft-cat-grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.aft-cat-grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.aft-cat-grid--cols-4 { grid-template-columns: repeat(4, 1fr); }

.aft-cat-grid--scroll {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
}
.aft-cat-grid--scroll::-webkit-scrollbar { display: none; }
.aft-cat-grid--scroll .aft-cat-card {
    flex: 0 0 calc(100% / 3 - 8px);
    scroll-snap-align: start;
    min-width: 160px;
}

/* Scroll carousel wrapper + buttons */
.aft-cat-scroll-wrap {
    position: relative;
    padding: 0 44px;
}
.aft-cat-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    color: #1a1a2e;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s, color .15s, transform .15s;
    flex-shrink: 0;
}
.aft-cat-scroll-btn:hover {
    background: var(--aft-pink, #E91E8C);
    color: #fff;
    transform: translateY(-50%) scale(1.08);
}
.aft-cat-scroll-prev { left: 0; }
.aft-cat-scroll-next { right: 0; }

.aft-cat-card {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}
.aft-cat-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.13); }
.aft-cat-card-img {
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
}
.aft-cat-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    padding: 10px 12px;
    background: #fff;
    color: #1a1a1a;
}
.aft-cat-card-name {
    font-size: 0.88rem;
    font-weight: 700;
    flex: 1;
}
.aft-cat-card-btn {
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0.75;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .aft-cat-grid--cols-3,
    .aft-cat-grid--cols-4 { grid-template-columns: repeat(2, 1fr); }
}

/* Collections ──────────────────────────────────────────────────────────── */
.aft-collections-wrap { padding: 56px 0 48px; }

/* Grid base */
.aft-col-grid { display: grid; gap: 20px; }
.aft-col-grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.aft-col-grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.aft-col-grid--cols-4 { grid-template-columns: repeat(4, 1fr); }
.aft-col-grid--scroll {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    scrollbar-width: none; gap: 16px;
}
.aft-col-grid--scroll::-webkit-scrollbar { display: none; }
.aft-col-grid--scroll .aft-col-card {
    flex: 0 0 calc(100% / 3 - 12px); scroll-snap-align: start; min-width: 220px;
}
@media (max-width: 640px) {
    .aft-col-grid--cols-3, .aft-col-grid--cols-4 { grid-template-columns: repeat(2, 1fr); }
}

/* Card base */
.aft-col-card {
    display: flex; flex-direction: column;
    border-radius: 12px; overflow: hidden;
    text-decoration: none;
    box-shadow: 0 2px 16px rgba(0,0,0,0.09);
    transition: transform .2s, box-shadow .2s;
}
.aft-col-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.15); }

/* Estilo 1 — Overlay */
.aft-col-card--overlay {
    position: relative;
    aspect-ratio: 3/4;
}
.aft-col-card--overlay .aft-col-card-img {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
}
.aft-col-card--overlay .aft-col-card-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,.65));
    padding: 48px 20px 24px;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    text-align: center;
}
.aft-col-card--overlay .aft-col-card-name {
    font-size: 1.05rem; font-weight: 800;
    letter-spacing: .04em; text-transform: uppercase;
    text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.aft-col-card--overlay .aft-col-card-btn {
    padding: 8px 22px; border-radius: 999px;
    font-size: 0.8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}

/* Estilo 2 — Card com texto */
.aft-col-card--card { background: #fff; }
.aft-col-card--card .aft-col-card-img {
    aspect-ratio: 4/3;
    background-size: cover; background-position: center;
}
.aft-col-card--card .aft-col-card-info {
    padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 8px;
}
.aft-col-card--card .aft-col-card-name { font-size: 1.05rem; font-weight: 800; }
.aft-col-card--card .aft-col-card-desc { font-size: 0.85rem; line-height: 1.55; opacity: .75; }
.aft-col-card--card .aft-col-card-btn {
    align-self: flex-start; margin-top: 6px;
    padding: 9px 22px; border-radius: 6px;
    font-size: 0.82rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
}

/* Estilo 3 — Banner dividido */
.aft-col-banners { display: flex; flex-direction: column; gap: 0; }
.aft-col-card--banner {
    flex-direction: row; border-radius: 0; box-shadow: none;
    min-height: 380px;
}
.aft-col-card--banner:nth-child(even) { flex-direction: row-reverse; }
.aft-col-card--banner .aft-col-card-img {
    flex: 1; min-height: 300px;
    background-size: cover; background-position: center;
}
.aft-col-card--banner .aft-col-card-info {
    flex: 1; padding: 48px 56px;
    display: flex; flex-direction: column; justify-content: center; gap: 14px;
}
.aft-col-card--banner .aft-col-card-name {
    font-size: clamp(1.3rem, 2.5vw, 1.9rem); font-weight: 900; line-height: 1.2;
}
.aft-col-card--banner .aft-col-card-desc { font-size: 0.92rem; line-height: 1.65; opacity: .8; }
.aft-col-card--banner .aft-col-card-btn {
    align-self: flex-start; margin-top: 8px;
    padding: 11px 28px; border: 2px solid; border-radius: 4px;
    font-size: 0.82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
    background: transparent !important;
    transition: background .15s, color .15s;
}
.aft-col-card--banner .aft-col-card-btn:hover {
    background: currentColor !important; filter: invert(1);
}
@media (max-width: 768px) {
    .aft-col-card--banner, .aft-col-card--banner:nth-child(even) { flex-direction: column; }
    .aft-col-card--banner .aft-col-card-info { padding: 28px 24px; }
}

/* Product sections ─────────────────────────────────────────────────────── */
.aft-products-wrap       { padding: 56px 0 48px; background: #fff; }
.aft-products-wrap--alt  { background: var(--color-soft); }

.aft-sec-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900;
    text-align: center;
    color: var(--color-title);
    margin-bottom: 36px;
    letter-spacing: -0.5px;
}
.aft-sec-title em { font-style: italic; color: var(--aft-pink); }

/* Split banner ─────────────────────────────────────────────────────────── */
.aft-split-banner {
    display: flex;
    min-height: 380px;
    background: var(--aft-pink-soft);
}
.aft-split-img {
    flex: 1;
    overflow: hidden;
    max-width: 55%;
}
.aft-split-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.aft-split-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 60px;
    gap: 16px;
}
.aft-split-tag {
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--aft-pink);
}
.aft-split-text h2 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-title);
    line-height: 1.2;
    margin: 0;
}
.aft-split-text p {
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 360px;
    margin: 0;
}
.aft-btn-split {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    gap: 8px;
    background: var(--color-title);
    color: #fff !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: background 0.2s, transform 0.15s;
    margin-top: 8px;
}
.aft-btn-split:hover { background: #333; transform: translateY(-2px); }

@media (max-width: 768px) {
    .aft-split-banner { flex-direction: column; min-height: auto; }
    .aft-split-img { max-width: 100%; height: 220px; }
    .aft-split-text { padding: 32px 24px; }
    .aft-split-text h2 { font-size: 1.6rem; }
}

/* Social CTA ───────────────────────────────────────────────────────────── */
.aft-social-cta {
    background: linear-gradient(135deg, var(--aft-pink) 0%, var(--aft-pink-dark) 100%);
    color: #fff;
    text-align: center;
    padding: 64px 20px;
}
.aft-social-cta h2 {
    font-size: clamp(1.5rem, 3vw, 1.9rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px;
}
.aft-social-cta p { color: rgba(255,255,255,0.82); font-size: 1rem; margin-bottom: 32px; }

.aft-social-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.aft-s-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.20);
}
.aft-s-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.30); }
.aft-s-ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff !important; }
.aft-s-tt { background: #010101; color: #fff !important; }

/* Home wrapper ─────────────────────────────────────────────────────────── */
.aft-home { background: var(--color-soft); }

/* Multi-platform badge */
.platform-badge--multi { background: var(--color-primary); }

/* Card platform buttons row ────────────────────────────────────────────── */
.card-plat-row {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.card-plat-btn {
    flex: 1;
    min-width: 0;
    padding: 9px 8px;
    border-radius: 7px;
    font-size: 0.72rem;
    font-weight: 700;
    text-align: center;
    color: #fff !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: filter 0.18s, transform 0.12s;
    line-height: 1.2;
}
.card-plat-btn:hover {
    filter: brightness(0.88);
    transform: translateY(-1px);
    color: #fff !important;
}
.card-plat-btn--ml      { background: #FFE600; color: #222 !important; }
.card-plat-btn--ml:hover { color: #222 !important; }
.card-plat-btn--shopee  { background: #EE4D2D; }
.card-plat-btn--tiktok  { background: #010101; }
.card-plat-btn--amazon  { background: #FF9900; color: #111 !important; }
.card-plat-btn--amazon:hover { color: #111 !important; }
.card-plat-btn--generic { background: var(--color-primary); }

/* ── Estrelas de avaliação ───────────────────────────────────────────── */

.aft-review-stars {
    color: #f5a623;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 4px;
}
.aft-rating-summary {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 12px 0 20px;
}
.aft-rating-avg {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}
.aft-rating-meta {
    font-size: 0.82rem;
    color: #888;
}
.aft-rating-stars-lg {
    color: #f5a623;
    font-size: 1.3rem;
}

/* ── Seções da home (editor visual) ──────────────────────────────────── */

.home-image-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.home-image-banner img {
    width: 100%;
    display: block;
    object-fit: cover;
}
.banner-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 100%);
}
.banner-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.banner-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.88);
    margin: 0;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.home-text-block {
    padding: 32px 20px;
    text-align: center;
}
.home-text-block h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 12px;
}
.home-text-block p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    opacity: 0.85;
}

.home-products-section {
    padding: 24px 16px;
}
.home-products-section .section-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.home-products-section .products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.home-spacer {
    display: block;
}

/* ==========================================================================
   SINGLE PRODUCT PAGE — wepink style (v1.0.36)
   ========================================================================== */

.sp-main { padding: 0 0 60px; }

/* Breadcrumb */
.sp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: #999;
    padding: 18px 0;
    flex-wrap: wrap;
}
.sp-breadcrumb a { color: #777; }
.sp-breadcrumb a:hover { color: var(--aft-pink); }
.sp-bc-sep { color: #ccc; }
.sp-bc-current {
    color: var(--color-title);
    font-weight: 600;
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Product layout — 2 columns */
.sp-product-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}
@media (max-width: 900px) {
    .sp-product-wrap { grid-template-columns: 1fr; gap: 32px; }
}

/* ── Gallery ─────────────────────────────────────────────────────────────── */
.sp-gallery { position: sticky; top: 90px; }

.sp-main-img-wrap {
    background: #f8f8f8;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f0f0f0;
}
.sp-main-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.sp-main-img-wrap:hover img { transform: scale(1.04); }

.sp-thumbstrip {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 4px;
}
.sp-thumbstrip::-webkit-scrollbar { display: none; }
.sp-thumb {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.65;
    flex-shrink: 0;
    transition: opacity 0.2s, border-color 0.2s;
}
.sp-thumb:hover { opacity: 0.9; }
.sp-thumb.active { border-color: var(--aft-pink); opacity: 1; }

/* ── Info panel ──────────────────────────────────────────────────────────── */
.sp-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sp-cat-pill {
    display: inline-flex;
    align-self: flex-start;
    background: var(--aft-pink-soft);
    color: var(--aft-pink);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 14px;
    border-radius: 30px;
}
.sp-cat-pill:hover { background: var(--aft-pink); color: #fff; }

.sp-title {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 900;
    color: var(--color-title);
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.5px;
}

/* Star rating */
.sp-rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
}
.sp-stars {
    color: #F5A623;
    font-size: 1.1rem;
    letter-spacing: 2px;
}
.sp-rating-link {
    font-size: 0.85rem;
    color: #888;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.sp-rating-link:hover { color: var(--aft-pink); }

.sp-excerpt {
    color: #555;
    font-size: 0.98rem;
    line-height: 1.7;
    margin: 0;
}

/* Buy box */
.sp-buy-box {
    background: #fff;
    border: 1.5px solid #f0f0f0;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.sp-buy-box--empty { background: var(--color-soft); }
.sp-where-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #aaa;
    margin: 0;
}

.sp-platform-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sp-plat-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: filter 0.2s, transform 0.15s;
    color: #fff !important;
    text-decoration: none;
}
.sp-plat-btn:hover {
    filter: brightness(0.92);
    transform: translateY(-2px);
}
.sp-plat-icon { flex-shrink: 0; display: flex; align-items: center; }
.sp-plat-label { flex: 1; }
.sp-plat-arrow { flex-shrink: 0; opacity: 0.7; }

.sp-plat-btn--ml      { background: #FFE600; color: #222 !important; }
.sp-plat-btn--shopee  { background: #EE4D2D; }
.sp-plat-btn--tiktok  { background: #010101; }
.sp-plat-btn--generic { background: var(--color-primary); }

/* Trust badges */
.sp-trust {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 0 0;
}
.sp-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: #666;
}
.sp-trust-item svg { color: var(--aft-pink); flex-shrink: 0; }

.sp-disclosure {
    font-size: 0.78rem;
    color: #aaa;
    line-height: 1.5;
    margin: 0;
    border-top: 1px solid #f0f0f0;
    padding-top: 14px;
}

/* ── Bottom sections ─────────────────────────────────────────────────────── */
.sp-bottom {
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.sp-section {
    background: #fff;
    border-radius: 16px;
    padding: 36px 40px;
    border: 1px solid #f0f0f0;
}
@media (max-width: 600px) {
    .sp-section { padding: 24px 20px; }
}

.sp-section-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-title);
    margin: 0 0 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f5f5f5;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.sp-rating-badge {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 6px;
}
.sp-stars-sm { color: #F5A623; letter-spacing: 2px; }

.sp-description-body {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
}
.sp-description-body p { margin-bottom: 1em; }

/* Reviews grid */
.sp-reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
@media (max-width: 640px) {
    .sp-reviews-grid { grid-template-columns: 1fr; }
}

.sp-review-card {
    background: var(--color-soft);
    border-radius: 12px;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 1px solid #ececec;
}
.sp-review-top {
    display: flex;
    align-items: center;
    gap: 10px;
}
.sp-review-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--aft-pink);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.sp-review-meta {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}
.sp-review-author {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-title);
}
.sp-review-date {
    font-size: 0.75rem;
    color: #aaa;
}
.sp-review-stars {
    color: #F5A623;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    flex-shrink: 0;
}
.sp-review-text {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.sp-load-more {
    background: none;
    border: 2px solid var(--aft-pink);
    color: var(--aft-pink);
    padding: 11px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.sp-load-more:hover { background: var(--aft-pink); color: #fff; }

/* Related products section */
.sp-related {
    background: var(--color-soft);
    padding: 56px 0;
    margin-top: 0;
}

/* ── CLS fix: banner de cookies fixo na viewport ────────────────────────── */
.cookieadmin_law_container {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 99999 !important;
    width: 100% !important;
}
