.ky-single-product{
	background:#0B0B0B;
	padding:30px 0 100px;
}

.ky-breadcrumb{
	font-size:13px;
	color:#8a8378;
	margin-bottom:24px;
}

.ky-breadcrumb a{
	color:#8a8378;
	text-decoration:none;
}

.ky-single-layout{
	display:grid;
	grid-template-columns:1fr 1fr;
	gap:60px;
	margin-bottom:50px;
}

/* Galeria */

.ky-single-gallery{
	display:flex;
	gap:16px;
}

.ky-single-gallery-thumbs-wrap{
	order:-1;
	display:flex;
	flex-direction:column;
	align-items:center;
	gap:8px;
}

.ky-single-gallery-main{
	position:relative;
	border-radius:16px;
	overflow:hidden;
	background:#141414;
	height:480px;
	flex:1;
}

.ky-single-gallery-main img{
	width:100%;
	height:100%;
	object-fit:cover;
	display:block;
}

.ky-single-gallery-thumbs{
	display:flex;
	flex-direction:column;
	gap:12px;
	height:480px;
	overflow-y:auto;
	scrollbar-width:none;
	padding:2px;
}

.ky-single-gallery-thumbs::-webkit-scrollbar{
	display:none;
}

.ky-single-gallery-thumbs img{
	width:70px;
	height:70px;
	flex-shrink:0;
	object-fit:cover;
	border-radius:10px;
	cursor:pointer;
	border:2px solid rgba(200,164,91,.15);
	transition:.3s;
}

.ky-single-gallery-thumbs img:hover,
.ky-single-gallery-thumbs img.active{
	border-color:#C8A45B;
}

.ky-thumbs-arrow{
	width:32px;
	height:24px;
	border-radius:6px;
	background:#141414;
	border:1px solid rgba(200,164,91,.3);
	color:#C8A45B;
	cursor:pointer;
	font-size:16px;
	display:flex;
	align-items:center;
	justify-content:center;
	flex-shrink:0;
}

.ky-thumbs-arrow:hover{
	background:#C8A45B;
	color:#111;
}

.ky-thumbs-arrow-up{
	transform:rotate(90deg);
}

.ky-thumbs-arrow-down{
	transform:rotate(-90deg);
}

@media(max-width:768px){
	.ky-single-gallery{
		flex-direction:column-reverse;
	}
	.ky-single-gallery-thumbs-wrap{
		flex-direction:row;
	}
	.ky-single-gallery-thumbs{
		flex-direction:row;
		height:auto;
		width:100%;
		overflow-x:auto;
		overflow-y:hidden;
	}
	.ky-thumbs-arrow-up,
	.ky-thumbs-arrow-down{
		transform:none;
	}
}

/* Info */

.ky-single-info h1{
	font-size:34px;
	color:#fff;
	margin:0 0 10px;
}

.ky-single-rating{
	color:#C8A45B;
	font-size:15px;
	margin-bottom:20px;
}

.ky-single-rating span{
	color:#8a8378;
	margin-left:6px;
}

.ky-single-price{
	font-size:32px;
	color:#C8A45B;
	font-weight:700;
	margin-bottom:4px;
}

.ky-single-price del{
	color:#6b665e;
	font-weight:400;
	font-size:22px;
	margin-right:10px;
}

.ky-single-installment{
	color:#8a8378;
	font-size:14px;
	margin-bottom:22px;
}

/* Mini benefícios */

.ky-single-mini-benefits{
	display:grid;
	grid-template-columns:repeat(3,1fr);
	gap:14px;
	margin-bottom:24px;
	padding-bottom:24px;
	border-bottom:1px solid rgba(200,164,91,.12);
}

.ky-single-mini-benefit{
	display:flex;
	align-items:center;
	gap:10px;
}

.ky-single-mini-benefit-icon{
	font-size:20px;
	flex-shrink:0;
}

.ky-single-mini-benefit strong{
	display:block;
	font-size:12px;
	color:#e6e0d8;
}

.ky-single-mini-benefit span{
	font-size:11px;
	color:#8a8378;
}

/* Quantidade e botões */

.ky-single-actions{
	margin-bottom:20px;
}

.ky-single-qty-row{
	display:flex;
	gap:14px;
	margin-bottom:16px;
}

.ky-single-qty-control{
	display:flex;
	align-items:center;
	border:1px solid rgba(200,164,91,.25);
	border-radius:8px;
	overflow:hidden;
}

.ky-single-qty-btn{
	width:44px;
	height:52px;
	background:#141414;
	border:none;
	color:#C8A45B;
	font-size:18px;
	cursor:pointer;
}

.ky-single-qty-btn:hover{
	background:rgba(200,164,91,.1);
}

.ky-single-qty-input{
	width:50px;
	height:52px;
	border:none;
	background:#0B0B0B;
	color:#f0ece6;
	text-align:center;
	font-size:15px;
}

.ky-btn-buy-now{
	flex:1;
	background:#C8A45B;
	color:#111;
	border:none;
	border-radius:8px;
	font-weight:700;
	text-transform:uppercase;
	letter-spacing:.5px;
	font-size:14px;
	cursor:pointer;
	display:flex;
	align-items:center;
	justify-content:center;
	gap:8px;
	transition:.3s;
}

.ky-btn-buy-now:hover{
	background:#e0be7c;
}

.ky-btn-add-cart{
	width:100%;
	background:transparent;
	border:1px solid #C8A45B;
	color:#C8A45B;
	padding:16px;
	border-radius:8px;
	font-weight:700;
	text-transform:uppercase;
	letter-spacing:.5px;
	font-size:14px;
	cursor:pointer;
	display:flex;
	align-items:center;
	justify-content:center;
	gap:8px;
	transition:.3s;
}

.ky-btn-add-cart:hover{
	background:rgba(200,164,91,.1);
}

/* Pagamento */

.ky-payment-icons{
	display:flex;
	align-items:center;
	gap:10px;
	margin-top:20px;
	flex-wrap:wrap;
}

.ky-payment-icons span{
	background:#141414;
	border:1px solid rgba(200,164,91,.15);
	color:#c9c2ba;
	font-size:12px;
	font-weight:600;
	padding:6px 12px;
	border-radius:6px;
}

.ky-payment-secure{
	font-size:11px;
	color:#6b665e;
	margin-top:8px;
}

/* Grid de recursos */

.ky-features-grid{
	max-width:1400px;
	margin:0 auto 50px;
	padding:0 4%;
	display:grid;
	grid-template-columns:repeat(5,1fr);
	gap:20px;
	background:#141414;
	border:1px solid rgba(200,164,91,.12);
	border-radius:14px;
	padding:26px 30px;
}

.ky-feature-item{
	text-align:center;
}

.ky-feature-icon{
	font-size:26px;
	margin-bottom:10px;
}

.ky-feature-item strong{
	display:block;
	font-size:13px;
	color:#f0ece6;
	margin-bottom:4px;
}

.ky-feature-item span{
	font-size:11px;
	color:#8a8378;
}

/* Abas */

.ky-single-tabs{
	background:#141414;
	border:1px solid rgba(200,164,91,.12);
	border-radius:16px;
	padding:40px;
	margin-bottom:60px;
}

.ky-tabs-nav{
	display:flex;
	gap:34px;
	border-bottom:1px solid rgba(200,164,91,.12);
	margin-bottom:30px;
	flex-wrap:wrap;
}

.ky-tabs-nav button{
	background:none;
	border:none;
	padding:0 0 16px;
	font-size:13px;
	text-transform:uppercase;
	letter-spacing:.5px;
	color:#8a8378;
	cursor:pointer;
	border-bottom:2px solid transparent;
	font-weight:600;
}

.ky-tabs-nav button.active{
	color:#C8A45B;
	border-bottom-color:#C8A45B;
}

.ky-tab-panel{
	display:none;
	color:#c9c2ba;
	line-height:1.8;
	font-size:15px;
}

.ky-tab-panel.active{
	display:block;
}

.ky-tab-panel h3,
.ky-tab-panel h2{
	color:#fff;
}

/* Consultor / Experiência (genéricas) */

.ky-promo-row{
	max-width:1400px;
	margin:0 auto 50px;
	padding:0 4%;
	display:grid;
	grid-template-columns:2fr 1fr;
	gap:30px;
}

.ky-promo-row .ky-video-box{
	background:#141414;
	border:1px solid rgba(200,164,91,.12);
	border-radius:16px;
	overflow:hidden;
	position:relative;
	min-height:280px;
	display:flex;
	align-items:flex-end;
}

.ky-video-placeholder{
	color:#8a8378;
	padding:24px;
	font-size:14px;
}

.ky-consultant-box{
	background:linear-gradient(135deg,#5C1022,#141414);
	border-radius:16px;
	padding:30px;
	display:flex;
	flex-direction:column;
	justify-content:center;
}

.ky-consultant-box h3{
	color:#fff;
	font-size:19px;
	margin:0 0 10px;
}

.ky-consultant-box p{
	color:#e6d3d8;
	font-size:13px;
	margin:0 0 18px;
	line-height:1.6;
}

.ky-consultant-box button{
	background:#C8A45B;
	color:#111;
	border:none;
	padding:12px 20px;
	border-radius:8px;
	font-weight:700;
	text-transform:uppercase;
	font-size:12px;
	letter-spacing:.5px;
	cursor:pointer;
	align-self:flex-start;
}

.ky-consultant-box small{
	color:#c9a0a8;
	font-size:11px;
	margin-top:10px;
}

/* Experiência de embalagem */

.ky-packaging-section{
	max-width:1400px;
	margin:0 auto 50px;
	padding:0 4%;
	background:#141414;
	border:1px solid rgba(200,164,91,.12);
	border-radius:16px;
	padding:34px;
}

.ky-packaging-header{
	display:flex;
	justify-content:space-between;
	align-items:flex-start;
	margin-bottom:26px;
	flex-wrap:wrap;
	gap:16px;
}

.ky-packaging-header h3{
	color:#C8A45B;
	font-size:20px;
	margin:0 0 8px;
}

.ky-packaging-header p{
	color:#8a8378;
	font-size:13px;
	max-width:420px;
	margin:0;
}

.ky-packaging-header button{
	background:#C8A45B;
	color:#111;
	border:none;
	padding:12px 20px;
	border-radius:8px;
	font-weight:700;
	font-size:12px;
	text-transform:uppercase;
	letter-spacing:.5px;
	cursor:pointer;
	white-space:nowrap;
}

.ky-packaging-grid{
	display:grid;
	grid-template-columns:repeat(5,1fr);
	gap:18px;
}

.ky-packaging-item{
	text-align:center;
}

.ky-packaging-item-icon{
	background:#0B0B0B;
	border:1px solid rgba(200,164,91,.15);
	border-radius:12px;
	height:90px;
	display:flex;
	align-items:center;
	justify-content:center;
	font-size:28px;
	margin-bottom:10px;
}

.ky-packaging-item strong{
	display:block;
	font-size:12px;
	color:#f0ece6;
	margin-bottom:4px;
}

.ky-packaging-item span{
	font-size:11px;
	color:#8a8378;
}

/* Relacionados */

.ky-related-title{
	text-align:center;
	margin-bottom:40px;
}

.ky-related-title span{
	color:#C8A45B;
	text-transform:uppercase;
	letter-spacing:3px;
	font-size:13px;
}

.ky-related-title h2{
	font-size:32px;
	color:#fff;
	margin:10px 0 0;
}

.ky-related-and-doubts{
	display:grid;
	grid-template-columns:3fr 1fr;
	gap:30px;
	margin-bottom:50px;
	align-items:start;
}

.ky-related-grid{
	display:grid;
	grid-template-columns:repeat(2,1fr);
	gap:26px;
}

@media(max-width:991px){
	.ky-related-and-doubts{
		grid-template-columns:1fr;
	}
	.ky-related-grid{
		grid-template-columns:repeat(2,1fr);
	}
}

@media(max-width:600px){
	.ky-related-grid{
		grid-template-columns:1fr;
	}
}

/* Dúvidas / WhatsApp */

.ky-doubts-box{
	background:#141414;
	border:1px solid rgba(200,164,91,.12);
	border-radius:16px;
	padding:30px 24px;
	text-align:center;
	display:flex;
	flex-direction:column;
	justify-content:center;
}

.ky-doubts-box h4{
	color:#fff;
	font-size:16px;
	margin:0 0 10px;
}

.ky-doubts-box p{
	color:#8a8378;
	font-size:13px;
	margin:0 0 20px;
}

.ky-doubts-box a{
	background:#C8A45B;
	color:#111;
	text-decoration:none;
	padding:14px 20px;
	border-radius:8px;
	font-weight:700;
	font-size:13px;
	text-transform:uppercase;
	letter-spacing:.5px;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	gap:8px;
	transition:.3s;
}

.ky-doubts-box a:hover{
	background:#e0be7c;
}

/* Rodapé de confiança */

.ky-trust-footer{
	max-width:1400px;
	margin:0 auto;
	padding:30px 4% 0;
	border-top:1px solid rgba(200,164,91,.12);
	display:grid;
	grid-template-columns:repeat(4,1fr);
	gap:20px;
}

.ky-trust-footer-item{
	display:flex;
	align-items:center;
	gap:10px;
}

.ky-trust-footer-item span.icon{
	font-size:20px;
	color:#C8A45B;
}

.ky-trust-footer-item strong{
	display:block;
	font-size:12px;
	color:#e6e0d8;
}

.ky-trust-footer-item small{
	font-size:11px;
	color:#8a8378;
}

.ky-related-and-doubts .ky-product-card{
	background:#141414;
	border:1px solid rgba(200,164,91,.12);
	box-shadow:none;
}

.ky-related-and-doubts .ky-product-card:hover{
	border-color:rgba(200,164,91,.4);
	box-shadow:0 18px 35px rgba(0,0,0,.4);
}

.ky-related-and-doubts .ky-product-favorite{
	background:rgba(20,20,20,.85);
	color:#C8A45B;
}

.ky-related-and-doubts .ky-product-name{
	color:#f0ece6;
}

.ky-related-and-doubts .ky-product-rating span{
	color:#8a8378;
}

.ky-related-and-doubts .ky-product-price{
	color:#C8A45B;
}

.ky-related-title-row{
	display:flex;
	justify-content:space-between;
	align-items:baseline;
	margin-bottom:24px;
}

.ky-related-title-row h2{
	color:#fff;
	font-size:24px;
	margin:0;
	text-transform:uppercase;
	letter-spacing:1px;
}

.ky-related-title-row a{
	color:#C8A45B;
	text-decoration:none;
	font-size:13px;
	font-weight:600;
}

.ky-related-title-row a:hover{
	text-decoration:underline;
}

.ky-related-and-doubts .ky-product-image{
	height:170px;
}

.ky-related-carousel-wrapper{
	position:relative;
}

.ky-related-grid{
	display:flex;
	gap:20px;
	overflow-x:hidden;
	scroll-behavior:smooth;
}

.ky-related-grid .ky-product-card{
	flex:0 0 calc(25% - 15px);
	min-width:0;
}

.ky-related-arrow{
	position:absolute;
	top:85px;
	width:36px;
	height:36px;
	border-radius:50%;
	background:#141414;
	border:1px solid rgba(200,164,91,.3);
	color:#C8A45B;
	display:flex;
	align-items:center;
	justify-content:center;
	cursor:pointer;
	z-index:5;
	font-size:16px;
}

.ky-related-arrow:hover{
	background:#C8A45B;
	color:#111;
}

.ky-related-arrow-prev{
	left:-18px;
}

.ky-related-arrow-next{
	right:-18px;
}

@media(max-width:991px){
	.ky-related-grid .ky-product-card{
		flex:0 0 calc(50% - 10px);
	}
}

@media(max-width:600px){
	.ky-related-grid .ky-product-card{
		flex:0 0 calc(100% - 0px);
	}
}

@media(max-width:991px){
	.ky-single-layout{
		grid-template-columns:1fr;
	}
	.ky-features-grid{
		grid-template-columns:repeat(2,1fr);
	}
	.ky-promo-row{
		grid-template-columns:1fr;
	}
	.ky-packaging-grid{
		grid-template-columns:repeat(2,1fr);
	}
	.ky-related-grid{
		grid-template-columns:repeat(2,1fr);
	}
	.ky-trust-footer{
		grid-template-columns:repeat(2,1fr);
	}
}

@media(max-width:600px){
	.ky-single-mini-benefits{
		grid-template-columns:1fr;
	}
	.ky-related-grid{
		grid-template-columns:1fr;
	}
}

.ky-variations-wrap{
	margin: 20px 0;
	display:flex;
	flex-direction:column;
	gap:14px;
}
.ky-variation-row label{
	display:block;
	color:#C8A45B;
	font-size:12px;
	text-transform:uppercase;
	letter-spacing:1px;
	margin-bottom:6px;
	font-weight:600;
}
.ky-variation-select{
	width:100%;
	max-width:280px;
	padding:10px 14px;
	background:#141414;
	border:1px solid #2a2a2a;
	border-radius:6px;
	color:#F7F7F7;
	font-size:14px;
	transition:border-color .25s ease, box-shadow .25s ease;
}
.ky-variation-select:focus{
	border-color:#C8A45B;
	outline:none;
}
.ky-variation-select.ky-variation-chosen{
	border-color:#C8A45B;
	box-shadow:0 0 0 1px #C8A45B;
}
.ky-reset-variations{
	color:#999;
	font-size:12px;
	text-decoration:underline;
	width:fit-content;
}
.single_add_to_cart_button:disabled,
.single_add_to_cart_button.disabled{
	opacity:.5;
	cursor:not-allowed;
}

/* Estilo dos swatches (Variation Swatches for WooCommerce) */
.variable-items-wrapper{
	display:flex;
	flex-wrap:wrap;
	gap:8px;
	margin-bottom:6px;
}
.variable-items-wrapper .variable-item{
	background:#141414 !important;
	border:1px solid #3a3a3a !important;
	border-radius:6px !important;
	color:#F7F7F7 !important;
	min-width:42px;
	height:38px;
	display:flex;
	align-items:center;
	justify-content:center;
	padding:0 12px;
	cursor:pointer;
	transition:border-color .25s ease, box-shadow .25s ease;
	opacity:1 !important;
}
.variable-items-wrapper .variable-item .variable-item-span{
	color:#F7F7F7 !important;
}
.variable-items-wrapper .variable-item:hover{
	border-color:#C8A45B !important;
}
.variable-items-wrapper .variable-item.selected{
	border-color:#C8A45B !important;
	box-shadow:0 0 0 1px #C8A45B;
	background:#1a1a1a !important;
}
.variable-items-wrapper .variable-item.selected .variable-item-span{
	color:#C8A45B !important;
}

.variations{
	width:100%;
	margin-bottom:6px;
	border-collapse:collapse;
}
.variations tr{
	display:block;
	margin-bottom:16px;
}
.variations td{
	display:block;
	padding:0;
	border:none;
}
.variations td.label{
	margin-bottom:8px;
}
.variations td.label label{
	color:#C8A45B;
	font-size:12px;
	text-transform:uppercase;
	letter-spacing:1px;
	font-weight:600;
	margin:0;
}
.variations td.value{
	margin-bottom:0;
}
.variations td.value select{
	display:none;
}