.ky-products{
	background:#0B0B0B;
	padding:90px 0;
}

.ky-products-grid{
	display:grid;
	grid-template-columns:repeat(4,1fr);
	gap:18px;
}

.ky-product-card{
	background:#141414;
	border:1px solid #2a2a2a;
	border-radius:12px;
	overflow:hidden;
	transition:.35s ease;
	display:flex;
	flex-direction:column;
}
.ky-product-card:hover{
	transform:translateY(-4px);
	border-color:#C8A45B;
}

.ky-product-image{
	position:relative;
	height:180px;
	overflow:hidden;
	display:block;
}

.ky-product-image img{
	width:100%;
	height:100%;
	object-fit:cover;
	display:block;
}
.ky-product-favorite{
	position:absolute;
	top:14px;
	right:14px;
	width:38px;
	height:38px;
	background:rgba(255,255,255,.9);
	border-radius:50%;
	display:flex;
	align-items:center;
	justify-content:center;
	font-size:16px;
	color:#5C1022;
}

.ky-product-info{
	padding:14px 16px 18px;
}
.ky-product-name-link{
	text-decoration:none;
}
.ky-product-name{
	font-size:14px;
	color:#F7F7F7;
	margin:0 0 6px;
	font-weight:600;
	line-height:1.3;
}
.ky-product-price{
	color:#C8A45B;
	font-size:16px;
	font-weight:700;
	margin-bottom:12px;
}
.ky-product-actions{
	display:flex;
	flex-direction:column;
	gap:8px;
}
.ky-btn-cart,
.ky-btn-options{
	display:block;
	text-align:center;
	padding:9px 10px;
	border-radius:6px;
	font-size:12px;
	font-weight:700;
	text-decoration:none;
	transition:.3s;
}
.ky-btn-cart{
	background:#C8A45B;
	color:#111;
}
.ky-btn-cart:hover{
	background:#e8c78a;
}
.ky-btn-options{
	background:transparent;
	color:#F7F7F7;
	border:1px solid #3a3a3a;
}
.ky-btn-options:hover{
	border-color:#C8A45B;
	color:#C8A45B;
}
@media(max-width:991px){
	.ky-products-grid{
		grid-template-columns:repeat(2,1fr);
	}
}

.ky-clube-wrapper {
    color: #F7F7F7;
}

.ky-clube-header {
    text-align: center;
    background: linear-gradient(180deg, #1a1a1a, #0B0B0B);
    border: 1px solid #C8A45B;
    border-radius: 12px;
    padding: 32px 24px;
    margin-bottom: 32px;
}

.ky-clube-selo {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #C8A45B;
}

.ky-clube-nivel-nome {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    color: #F7F7F7;
    margin: 8px 0;
}

.ky-clube-pontos {
    color: #C9C9C9;
    margin-bottom: 20px;
}

.ky-progress-track {
    background: #2a2a2a;
    border-radius: 20px;
    height: 10px;
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
}

.ky-progress-fill {
    background: linear-gradient(90deg, #C7A348, #C8A45B);
    height: 100%;
    border-radius: 20px;
    transition: width 0.4s ease;
}

.ky-progress-legenda {
    margin-top: 12px;
    font-size: 14px;
    color: #C9C9C9;
}

.ky-niveis-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.ky-nivel-card {
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 20px;
    position: relative;
    transition: border-color 0.3s ease;
}

.ky-nivel-card.desbloqueado {
    border-color: #C8A45B;
}

.ky-nivel-card.atual {
    border-width: 2px;
    box-shadow: 0 0 16px rgba(200, 164, 91, 0.25);
}

.ky-nivel-card.bloqueado {
    opacity: 0.5;
}

.ky-badge-atual {
    position: absolute;
    top: -10px;
    right: 16px;
    background: #C8A45B;
    color: #0B0B0B;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
}

.ky-nivel-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: #C8A45B;
    margin: 4px 0;
}

.ky-nivel-requisito {
    font-size: 12px;
    color: #999;
    margin-bottom: 12px;
}

.ky-beneficios-lista {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ky-beneficios-lista li {
    font-size: 13px;
    color: #DDD;
    padding: 6px 0;
    border-top: 1px solid #222;
}

.ky-beneficios-lista li:first-child {
    border-top: none;
}

.ky-clube-nota {
    text-align: center;
    font-size: 12px;
    color: #888;
    margin-top: 24px;
}

@media (max-width: 768px) {
    .ky-niveis-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.woo-selected-variation-item-name{
	color:#F7F7F7;
	font-weight:600;
}