/* VARIAVEIS */
:root {

	--azul: #4a90e2;
	--cinza: #333333;
	--preto: #111111;
	--branco: #FFFFFF;
	--vinho: #800020;
	--vinho-escuro: #5D0010; 
	--rosa: #CD6B63;
	--rosa-escuro: #a80931;

	--text: #333333;

	--padding-x-global: 3.25rem;
	--padding-x-global-mobile: 1.5rem;
	--section-y-global: 4rem;
	--section-y-global-mobile: 2rem;

	--BBH: "BBH Bartle", sans-serif;
	--Dafoe: 'Mr Dafoe', cursive;
	--Great: "Great Vibes", cursive;
	--Kapakana: "Kapakana", cursive;

	--h1-fs: 3.5rem;
	--h1-lh: 1.2em;
	--h2-fs: 2.2rem;
	--h2-lh: 1.2em;
	--h3-fs: 1.8rem;
	--h3-lh: 1.2em;
	--h4-fs: 1.375rem;
	--h4-lh: 1.2em;
	--h5-fs: 1rem;
	--h5-lh: 1.2em;
	--h6-fs: 1.125rem;
	--h6-lh: 1.2em; 

	--h1-fs-mobile: 2rem;
	--h1-lh-mobile: 1.2em;
	--h2-fs-mobile: 1.75rem;
	--h2-lh-mobile: 1.2em;
	--h3-fs-mobile: 2rem;
	--h3-lh-mobile: 1.2em;
	--h4-fs-mobile: 1.375rem;
	--h4-lh-mobile: 1.2em;
	--h5-fs-mobile: 1.25em;
	--h5-lh-mobile: 1.2em;
	--h6-fs-mobile: 1.125rem;
	--h6-lh-mobile: 1.2em; 

	--bs-offcanvas-mobile-padding-x: 2rem
}

/* CONFIGURAÇÕS GERAIS */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{
	background-color: transparent;
	background-image: url('https://vwmstore.com.br/wp-content/uploads/2025/12/fundo-scaled.png');
	background-repeat: repeat;
}

a{
	transition: 0.5s;
	text-decoration: none;
	color: inherit;
}

a:hover {
	text-decoration: none;
	color: inherit;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.wrapper {
	padding: var(--section-y-global) 0;
	overflow: hidden;
}

@media(max-width: 586px){
	.wrapper {
		padding: var(--section-y-global-mobile) 0;
		overflow: hidden;
	}
}

/* .wpcf7 {
display: none;
} */

/* TITULOS */
h1, h2,
.h1, .h2 {
	font-weight: 400;
}

.h1, h1 {
	font-size: var(--h1-fs);rosa

	line-height: var(--h1-lh);
}

.h2, h2 {
	font-size: var(--h2-fs);
	line-height: var(--h2-lh);
}

.h3, h3 {
	font-size: var(--h3-fs);
	line-height: var(--h3-lh);
}

.h4, h4 {
	font-size: var(--h4-fs);
	line-height: var(--h4-lh);
}

.h5, h5 {
	font-size: var(--h5-fs);
	line-height: var(--h5-lh);
}

.h6, h6 {
	font-size: var(--h6-fs);
	line-height: var(--h6-lh);
}

.title{
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 2rem;
}

/* TITULOS E SUBTITULOS */
.subtitle{
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 2rem;
}

.section-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin: 50px auto; 
}

.divider-text {
	font-size: 1.6rem;
	font-weight: 600;
	padding: 0 15px; 
	white-space: nowrap; 
	text-transform: uppercase;
}

.section-divider::before,
.section-divider::after {
	content: '';
	flex-grow: 1; 
	height: 2px;
	background-color: var(--vinho); 
	margin: 0 5px; 
}

@media(max-width: 568px){
	.h2, h2 {
		font-size: var(--h2-fs-mobile);
		color: var(--azul-escuro);
		font-weight: 500;
	}

	.h3, h3 {
		font-size: var(--h3-fs-mobile);
	}
}

/* SEÇÃO HERO */
#main-banner #image-mobile {
	display: none;
}

#main-banner {
	position: relative;
	height: 70vh;
}

#main-banner.banner-category {
	height: 50vh;
}

#main-banner .swiper {
	height: 100%;
}

#main-banner .container,
#main-banner .wrapper {
	height: 100%;
}

#main-banner img{
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	object-fit: cover;
	object-position: center;
	z-index: -1;
}

@media(max-width: 998px){
	#main-banner {
		height: 80vh;
	}

	#main-banner #image-mobile {
		display: block;
	}

	#main-banner #image-desktop {
		display: none;
	}

}

@media(max-width: 586px){
	#main-banner {
		height: 50vh;
	}

}

/* BULLETS CARROSSEL */
.swiper-horizontal>.swiper-pagination-bullets, 
.swiper-pagination-bullets.swiper-pagination-horizontal, 
.swiper-pagination-custom, 
.swiper-pagination-fraction {
	/* 	width: fit-content; */
	/* 	left: inherit; */
	/* 	right: 5rem; */
	/* 	bottom: 2rem; */

}

.swiper-pagination-bullet {
	width: 15px;
	height: 15px;
	border-radius: 1rem;
	background: var(--branco);
	border: 1px solid var(--vinho);
	opacity: 1;
	transition: 1s;
}

.swiper-pagination-bullet-active {
	width: 26px;
	background: var(--vinho);
}

/* BOTÃO PADRÃO*/
.btn.btn-default {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 14px 35px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 4px;
	transition: all 0.2s ease;
}

.btn.btn-default:hover {
	transform: translateY(2px);
}

/* BOTÃO ESTILO ONE */
.btn.btn-default.one{
	background-color: var(--azul);
	color: var(--branco);
	border-bottom: 4px solid #2a6ab5;
}

.btn.btn-default.one:hover {
	background-color: #357abd;
	border-bottom-color: #1e528f;
}

/* BOTÃO ESTILO TWO */
.btn.btn-default.two{
	background-color: var(--rosa);
	color: var(--branco);
	border-bottom: 4px solid #9E453D;
}

.btn.btn-default.two:hover {
	background-color: var(--rosa-escuro);
	border-bottom-color: var(--vinho-escuro);
}

/* SEARCH FORM */
.search-box {
	position: relative;
}

.search-form button{
	position: absolute;
	left: 5px;
	top: 50%;
	transform: translateY(-50%);
	width: 30px; 
	height: 30px;
	border: none;
	background-color: transparent;
	cursor: pointer;
	color: transparent;
	font-size: 0;
	background-image: url('https://vwmstore.com.br/wp-content/uploads/2025/12/search.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 16px;
	z-index: 10;
}

.search-form input[type="search"]{
	/*     width: 100%; */
	padding: 8px 15px 8px 40px; 
	border: 1px solid var(--vinho);
	border-radius: 50px;
	background-color: transparent;
	font-size: 14px;
	color: #555;
	outline: none;
	height: 40px;
}

.search-form input[type="search"]:focus {
	border-color: var(--vinho-escuro);
	box-shadow: 0 0 3px rgba(121, 85, 72, 0.2);
}


/* HEADER TOP */
.top-header-logo,
.top-header{
	display: none;
}

@media(max-width: 586px){
	.top-header{
		background-color: var(--vinho-escuro);
		color: var(--branco);
		text-align: center;
		display: block;
	}

	.top-header-logo{
		display: block;
		padding: 5px 0;
	}

	.top-header-logo .row{
		justify-content: space-between;
		align-items: center;
	}
}

/* HEADER */
header {
	background: var(--branco);
	width: 100%;
	/* 	transition: background-color 0.3s ease; */
	transition: 0.5s;
}

header.scrolled {
	transition: 0.5s;
	background: var(--branco);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	backdrop-filter: blur(5px);
	border-bottom: 2px solid var(--vinho);
}

header .navbar {
	margin: 0.5rem 0;
}

header.scrolled .navbar {
	margin: 0.5rem 0;
	transition: 0.5s;
}

.custom-logo-link img{
	max-width: 100px;
	height: auto;
}

header.scrolled .custom-logo-link img{
	max-width: 60px;
}

header .navbar .menu ul{
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
}

header .navbar .menu li {
	margin-left: 2rem;
	text-transform: uppercase;
}

.navbar .menu li.active a{
	font-weight: 700;
	color: var(--vinho);
}

header .navbar .menu {
	display: flex;
	font-size: 1rem;
	font-weight: 400;
}

.navbar .menu .menu-item {
	position: relative;
}

.navbar .menu-item a:hover:before {
	opacity: 1;
}

.navbar .menu-item a:before {
	content: "";
	position: absolute;
	display: block;
	bottom: 0;
	left: 15%;
	width: 70%;
	height: 2px;
	background: var(--vinho);
	border-radius: 4px;
	opacity: 0;
	transition: .5s;
}

.navbar .menu-item.active a:before {
	opacity: 1;
}

header .menu-btn i{
	color: var(--vinho);
	font-size: 2rem;
}

header .menu-btn {
	display: none;	
}

/* Marca o item do menu ativo (LOJA) mesmo quando estiver navegando nas categorias internas */
.main-navigation .current-menu-item > a,
.main-navigation .current-menu-ancestor > a,
.main-navigation .current_page_parent > a {
	color: #800000 !important; /* Cor Vinho/Vermelho da sua marca */
	font-weight: bold;
}

/* Opcional: Manter o estilo ao passar o mouse */
.main-navigation li a:hover {
	color: #800000;
}

/* RESPONSIVIDADE HEADER */
@media(max-width: 998px){
	header .navbar.desktop,
	header .cart,
	header .search-box {
		display: none;
	}

	header .navbar {
		margin: 0;
	}

	header .custom-logo-link img{
		max-width: 60px;
	}

	#offcanvasMenu {
		background: var(--vinho-escuro);
		color: var(--branco);
		width: 80%;
		z-index: 99999;
	}

	.offcanvas .offcanvas-body {
		padding: 2rem 0 0 0;
	}

	.offcanvas .offcanvas-body .menu .sub-menu {
		margin-left: 2rem;
	}

	.offcanvas .offcanvas-body .menu li {
		border-bottom: 1px solid #FFFFFF33;
		border-top: 1px solid #FFFFFF33;
		padding: 0.8rem 0 0.8rem 1.2rem;
		font-size: 1.5rem;
	}

	#redes-sociais h4{
		color: var(--branco);
		margin-bottom: 2rem;
	}

	#redes-sociais i{
		font-size: 2.5rem;
		color: yellow;
	}

	.offcanvas-header .btn-close {
		margin-right: 1rem;
	}

	.offcanvas button{
		background: transparent;
		border: none;
		right: 0;
	}

	.offcanvas button i{
		color: var(--branco);
		font-size: 2rem;
	}

	header .menu-btn {
		display: block;	
	}

}

/* FOOTER */
#contact-newsletter{
	text-align: center;
}

#contact-newsletter .form-control{
	border: 1px solid var(--vinho);
	padding: 0.8rem;
}

.logo-vwm{
	display: flex;
	justify-content: end;
}

.logo-vwm img{
	width: 100px;
	object-fit: contain;
}

footer h6{
	font-weight: 700;
	font-family: 'Open Sans', sans-serif;
}

footer .navbar{
	padding-top: 0;
	margin-top: 0;
}

footer .navbar .menu .menu-item {
	margin-bottom: 1rem;
}

footer .navbar .menu-item a:before {
	left: 0;
	width: 50%;
}

.wrapper-certificados,
.wrapper-pagamentos{
	display: flex;
	flex-wrap: wrap;
}

.wrapper-contatos{
	display: grid;
	grid-template-columns: 1fr;
}

.wrapper-pagamentos img {
	width: 70px;
	height: 35px;
	object-fit: cover;
	margin: 0.5rem 0.5rem 0.5rem 0;
	border: 1px solid #cccc;
	border-radius: 5px;
	box-shadow: 2px 2px 5px #a6a6a6;
}

.wrapper-certificados img {
	width: 75px;
	height: 75px;
	object-fit: contain;
	margin: 0.5rem 0.5rem 0.5rem 0;
}

.copyright{
	background-color: var(--vinho-escuro);
	color: var(--branco);
}

@media(max-width: 586px){
	footer{
		text-align: center;	
	}

	footer h6{
		margin-bottom: 1rem;

	}

	.wrapper-footer .single-footer{
		margin: 1rem 0;
	}

	.wrapper-certificados, 
	.wrapper-pagamentos{
		justify-content: center;
	}

	.wrapper-contatos a{
		justify-self: center;
	}

}

/* WOOCOMMERCE */

/* BREADCRUMBS */
.woocommerce .woocommerce-breadcrumb{
	color: var(--vinho);
	font-weight: bold; 
	margin: 2rem 0;
}

.woocommerce .woocommerce-breadcrumb a {
	color: #666666; 
	font-weight: normal; 
}

.woocommerce .woocommerce-breadcrumb a:hover {
	color: var(--vinho);
	text-decoration: underline; 
}

@media(max-width: 586px){

}

/* CART */
.cart .cart-icon {
	background: url('https://vwmstore.com.br/wp-content/uploads/2025/12/cart.png');
	background-size: contain;
	height: 25px;
	width: 25px;
	display: inline-block;
	background-repeat: no-repeat;
	vertical-align: bottom; 
}

.cart .items{
	background: #CA2424;
	color: #fff;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	display: inline-block;
	text-align: center;
}

/* CONTAINER DE PRODUTOS */
.woocommerce ul.products {
	display: block;
	column-count: 4;
	column-gap: 15px; 
	padding: 0;
}

.woocommerce ul.products li.product {
	/*     display: inline-block; */
	width: 100%!important;
	margin-bottom: 15px!important; 
	break-inside: avoid; 
	background-color: var(--branco);
	box-shadow: 2px 2px 5px 2px #cccc;
	transition: transform 0.3s ease;
	float: none!important; 
	margin-right: 0!important; 
}

.woocommerce ul.products li.product:hover {
	box-shadow: 0 10px 20px rgba(0,0,0,0.08); 
	transform: translateY(-5px); 
}

@media (max-width: 1024px) {
	.woocommerce ul.products {
		column-count: 3;
	}
}

@media (max-width: 768px) {
	.woocommerce ul.products {
		column-count: 2;
	}
}

@media (max-width: 480px) {
	.woocommerce ul.products {
		column-count: 2;
	}
}

/* CARD BODY */
.woocommerce ul.products li.product a img {
	width: 100%;
	height: auto;
	display: block;
	margin-bottom: 0;
}

.woocommerce .card-body {
	position: relative;
	width: 100%;
	background-color: #f7f7f7;
	padding: 1rem;
	text-align: center;
	z-index: 10;
}

.woocommerce .card-body::before {
	content: '';
	position: absolute;
	top: -30px;
	left: 0;
	width: 100%;
	height: 31px;
	background-color: #f7f7f7;
	clip-path: polygon(0 100%, 100% 0, 100% 100%);
	z-index: -1;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 700;
	color: #333;
	letter-spacing: 0.5px;
	margin-bottom: 10px;
}

.woocommerce ul.products li.product .price ins {
	text-decoration: none;
}

.woocommerce ul.products li.product .price {
	font-size: 20px;
	font-weight: 700;
	color: var(--vinho-escuro);
}

.woocommerce ul.products li.product .price del {
	color: #aaa; 
	font-size: 12px;
	font-weight: normal;
	margin-right: 5px;
}

.woocommerce .product-installments {
	font-size: 11px;
	font-weight: 500;
}

.woocommerce ul.products li.product .onsale {
	top: 20px;
	left: 0;
	transform: rotate(90deg);
	border-radius: 0;
	width: 83px;
	padding: 0;
	background-color: #D2335B;
	margin: 0;
	font-weight: 400;
}

.woocommerce ul.products li.product .onsale:before {
	content: "";
	position: absolute;
	top: 0;
	left: 82px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 24px 22px 0 0;
	border-color: #D2335B transparent transparent transparent;
}

.woocommerce ul.products li.product .onsale:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 82px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 22px 24px 0;
	border-color: transparent transparent #D2335B transparent;
}

/* SIDEBAR E WIDGETS */
.sidebar-shop .widget {
	margin-bottom: 2rem;
}

.sidebar-shop .widget-title {
	font-size: 1rem;
	text-transform: uppercase;
	border-bottom: 1px solid #eee;
	padding-bottom: 10px;
}

.sidebar-shop .wp-block-buttons>.wp-block-button.has-custom-width .wp-block-button__link {
	background: var(--vinho-escuro);
}

/* AJUSTE DOS FILTROS */
.woocommerce-widget-layered-nav-list {
	padding: 0;
	list-style: none;
}
.woocommerce-widget-layered-nav-list li {
	margin-bottom: 8px;
}
.woocommerce-widget-layered-nav-list li a {
	text-decoration: none;
	color: #555;
}
.woocommerce-widget-layered-nav-list li a:hover {
	color: #000;
}

.woocommerce .woocommerce-ordering select {
	vertical-align: top;
	margin-left: 1rem;
	border: 1px solid var(--vinho);
	border-radius: 5px;
	padding: 0.5rem;
}

@media(max-width: 586px){
	.shop-content .shop-ordering {
		flex-direction: column;
	}
}

/* PÁGINA DO PRODUTO SINGLE*/
.woocommerce .product .onsale {
	top: 20px;
	left: 0;
	transform: rotate(90deg);
	border-radius: 0;
	width: 83px;
	padding: 0;
	background-color: #D2335B;
	margin: 0;
	font-weight: 400;
}

.woocommerce .product .onsale:before {
	content: "";
	position: absolute;
	top: 0;
	left: 82px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 24px 22px 0 0;
	border-color: #D2335B transparent transparent transparent;
}

.woocommerce .product .onsale:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 82px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 22px 24px 0;
	border-color: transparent transparent #D2335B transparent;
}

main .product .product_title {
	font-size: 2.5rem;
	font-weight: 500;
}

#main .product .price {
	font-size: 20px;
	font-weight: 700;
	color: var(--vinho-escuro);
}

#main .single_add_to_cart_button.button.alt {
	background-color: var(--vinho);
	color: var(--branco);
	font-size: 1.2rem;
	padding: 15px 30px;
	width: 100%;
	text-transform: uppercase;
	font-weight: bold;
	border-radius: 5px;
	transition: background 0.3s;
}
