header {
	top: 0;
	z-index: 1020;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

a {
	transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.logo-container {
	max-width: 120px;
}

header .header-container {
	padding: 10px 0;
}

.product-card {
	position: relative;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 10px;
	text-align: center;
	background-color: #fff;
	transition: all 0.3s ease;
	cursor: pointer;
}

.product-category-badge {
	position: absolute;
	top: -2px;
	left: -2px;
	background-color: rgba(253, 126, 20, 0.85);
	/* Orange with transparency */
	color: white;
	padding: 2px 8px;
	font-size: 10px;
	font-weight: bold;
	border-radius: 4px;
	z-index: 10;
	text-transform: uppercase;
}


.product-card img {
	max-width: 200px;
	max-height: 200px;
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
	background-color: #f0f0f0;
	/* Placeholder background */
}

.product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
	border-color: #fd7e14;
	z-index: 100;
}

.product-card-featured {
	border: 1px solid #198754 !important;
	box-shadow: 0 4px 12px rgba(25, 135, 84, 0.15);
}

.product-card-featured .product-category-badge {
	background-color: #198754 !important;
}

.rating-stars-container {
	background-color: #f1f0f0ff;
	position: absolute;
	bottom: -5px;
	right: -15px;
	padding: 2px;
	border-radius: 5px;
	display: flex;
	flex-direction: column;
	align-items: center;
	border: 1px solid #ccc;
	transition: border-color 0.3s ease;
}

.rating-stars-container-featured {
	background-color: #f1f0f0ff;
	position: absolute;
	bottom: -5px;
	right: -15px;
	padding: 2px;
	border-radius: 5px;
	display: flex;
	flex-direction: column;
	align-items: center;
	border: 1px solid #ccc;
	transition: border-color 0.3s ease;
}

.product-card:hover .rating-stars-container {
	border-color: #fd7e14;
}

.product-card-featured:hover .rating-stars-container-featured {
	border-color: green;
}

.ver-produto-label {
	display: none;
	position: absolute;
	bottom: -35px;
	left: -1px;
	right: -1px;
	background-color: #fd7e14;
	color: white;
	padding: 8px 0;
	font-weight: bold;
	font-size: 0.9rem;
	z-index: 10;
	text-transform: capitalize;
	border-radius: 0 0 8px 8px;
	border: 1px solid #fd7e14;
	border-top: none;
}

.product-card:hover .ver-produto-label {
	display: block;
}

.ver-produto-label-featured {
	display: none;
	position: absolute;
	bottom: -35px;
	left: -1px;
	right: -1px;
	background-color: green;
	color: white;
	padding: 8px 0;
	font-weight: bold;
	font-size: 0.9rem;
	z-index: 10;
	text-transform: capitalize;
	border-radius: 0 0 8px 8px;
	border: 1px solid green;
	border-top: none;
}

.product-card:hover .ver-produto-label-featured {
	display: block;
}

.product-card h5 {
	transition: color 0.3s ease;
}

.product-card:hover h5 {
	color: #fd7e14;
}

.product-price {
	position: relative;
	font-weight: bold;
	color: #28a745;
	font-size: 1.3em;
	margin-bottom: -100px;
	transition: color 0.3s ease;
}

.product-price:hover {
	color: #218838;
}

.btn-ver-produto {
	background-color: #fd7e14;
	color: white;
	padding: 10px 20px;
	font-size: 1.1em;
	border: none;
	border-radius: 5px;
	text-transform: uppercase;
	transition: background-color 0.3s ease;
}

.btn-ver-produto:hover {
	background-color: #218838;
}

.btn-ver-produto {
	text-decoration: none;
}

.product-description {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	/* Limita a descrição a 3 linhas */
	overflow: hidden;
	margin-bottom: 10px;
	font-size: 0.9em;
	color: #555;
}

@media (max-width: 767px) {
	.product-card {
		padding: 5px;
	}

	.product-card .d-flex {
		flex-direction: column;
		/* Alinha o preço e o botão em uma coluna */
		align-items: center;
		/* Centraliza os itens */
	}

	.product-price {
		margin-bottom: 10px;
		/* Dá espaço entre o preço e o botão */
	}

	.btn-ver-produto {
		margin-top: 10px;
		/* Dá espaço entre o botão e outros itens */
	}
}

@media (max-width: 767px) {
	.product-card {
		padding: 7px;
	}
}

.bg-orange {
	background: #fd7e14;
}

.text-orange {
	color: #fd7e14;
}

.text-green {
	color: green;
}

/* Limitar a descrição a 3 linhas para smartphones */
.product-card .product-description {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	/* Limitar a 3 linhas */
	overflow: hidden;
}

/* Adiciona margem para a descrição para melhorar a visibilidade */
.product-card .product-description {
	margin: 0 10px;
}

@media (max-width: 767px) {

	/* Em dispositivos móveis, limitar a 3 linhas */
	.product-card .product-description {
		-webkit-line-clamp: 3;
		line-clamp: 3;
	}
}

@media (min-width: 992px) {

	/* Em dispositivos móveis, limitar a 3 linhas */
	.product-card .product-description {
		-webkit-line-clamp: 2;
		line-clamp: 2;
	}
}

.fs-10 {
	font-size: 0.75rem !important;
}

.fs-12 {
	font-size: 0.75rem !important;
}

@media (min-width: 992px) {
	.header-container {
		display: flex;
		align-items: center;
		padding: 1rem 1rem;
	}

	.header-container .logo-box {
		flex: 0 0 200px;
		/* Tamanho fixo para o logo no desktop */
	}

	.header-container img {
		max-width: 150px;
	}
}

@media (max-width: 991px) {
	.header-container {
		padding: 0.5rem 1rem;
	}

	.header-container img {
		max-height: 60px;
	}
}

.list-item-spacing li {
	margin-bottom: 10px;
	/* Ajuste a distância entre os itens */
}

.list-item-spacing li:last-child {
	margin-bottom: 0;
	/* Remove margem do último item */
}

/* Botão Voltar ao Topo */
#btn-back-to-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	display: none;
	z-index: 1000;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background-color: #fd7e14;
	color: white;
	border: 2px solid white;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
}

#btn-back-to-top:hover {
	background-color: #218838;
	transform: scale(1.1);
}

#btn-back-to-top i {
	font-size: 20px;
}

/* Cookie Consent Banner */
#cookie-banner {
	position: fixed;
	bottom: 20px;
	left: 20px;
	right: 20px;
	background: #fff;
	color: #333;
	padding: 20px;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	z-index: 1050;
	display: none;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 15px;
	border-left: 5px solid #fd7e14;
	max-width: 600px;
	margin: 0 auto;
}

@media (min-width: 768px) {
	#cookie-banner {
		left: 20px;
		right: auto;
		bottom: 20px;
		flex-wrap: nowrap;
	}
}

#cookie-banner p {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.4;
	flex: 1;
}

#cookie-banner .btn-accept {
	background-color: #fd7e14;
	color: #fff;
	border: none;
	padding: 8px 20px;
	border-radius: 6px;
	font-weight: bold;
	cursor: pointer;
	transition: background 0.3s;
	white-space: nowrap;
}

#cookie-banner .btn-accept:hover {
	background-color: #e66e0d;
}

#cookie-banner a {
	color: #fd7e14;
	text-decoration: underline;
}

/* Footer Link Effects */
footer a:not(.logo-container):not(:has(img)),
.subfooter a {
	position: relative;
	text-decoration: none !important;
	display: inline-block;
}

footer a:not(.logo-container):not(:has(img))::after,
.subfooter a::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -2px;
	left: 0;
	background-color: #fff;
	transition: width 0.3s ease;
}

footer a:not(.logo-container):not(:has(img)):hover::after,
.subfooter a:hover::after {
	width: 100%;
}

footer a:not(.logo-container):not(:has(img)):hover,
.subfooter a:hover {
	color: #fff !important;
}

/* Cookie Banner Link Effect */
#cookie-banner a {
	color: #fd7e14;
	text-decoration: none;
	position: relative;
	font-weight: 600;
	display: inline-block;
}

#cookie-banner a::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -1px;
	left: 0;
	background-color: #fd7e14;
	transition: width 0.3s ease;
}

#cookie-banner a:hover::after {
	width: 100%;
}

.top-10-header {
	background: linear-gradient(135deg, #fd7e14 0%, #ffc107 100%);
	color: white;
	padding: 30px 0;
	text-align: center;
	border-radius: 0 0 30px 30px;
	margin-bottom: 15px;
}

.rank-badge {
	position: absolute;
	top: -10px;
	right: -10px;
	background: #fd7e14;
	color: white;
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-weight: bold;
	font-size: 1rem;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	z-index: 20;
	border: 2px solid white;
}

.top-1-prizewinner {
	border: 2px solid #ffd700 !important;
	box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.top-1-prizewinner .rank-badge {
	background: #ffd700;
	color: #000;
}

.sales-info {
	font-size: 0.75rem;
	color: #888;
	margin-bottom: 5px;
	font-weight: 600;
}

.bg-orange-light {
	background-color: rgba(253, 126, 20, 0.1);
}

.bg-success-light {
	background-color: rgba(40, 167, 69, 0.1);
}

.text-orange {
	color: #fd7e14 !important;
}

.content-section {
	background-color: #fff;
	padding: 40px;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	margin-bottom: 30px;
}

.content-section h2 {
	color: #fd7e14;
	font-weight: 700;
	margin-bottom: 20px;
	font-size: 1.5rem;
}

.content-section p,
.content-section li {
	color: #555;
	line-height: 1.6;
}

.policy-header {
	padding: 30px 0;
	background: linear-gradient(135deg, #fd7e14 0%, #e66e0d 100%);
	color: white;
	text-align: center;
	margin-bottom: -0px;
}