* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Arial, sans-serif;
}

body {
	background-color: rgb(13, 16, 23);
	color: white;
	min-height: 100vh;
}

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

/* Header Styles */
.header {
	background-color: rgb(13, 16, 23);
	padding: 25px 0;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

.header-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.logo-menu-container {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	justify-content: flex-start; 
}

.logo {
	width: 120px;
	margin-right: 60px;
	display: flex;
	align-items: center;
	padding: 15px 0;
}

.nav {
	display: flex;
	align-items: center;
	width: auto;
	margin-left: auto; /* Push the nav to the right */
}

.menu-toggle {
	display: none;
	background: none;
	border: none;
	color: white;
	font-size: 24px;
	cursor: pointer;
	padding: 0;
}

.nav-menu {
	display: flex;
	gap: 25px;
	list-style: none;
	flex-wrap: wrap;
	justify-content: flex-end;
	width: auto;
}

.nav-menu a {
	color: inherit;
	text-decoration: none;
	font-size: 12px;
	transition: color 0.3s ease;
	text-transform: uppercase;
}

.nav-menu a:hover {
	color: #ff3e00;
}

.header-bottom {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	width: 100%;
	margin-top: 10px;
}

.header-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
	margin-top: 10px;
}

.search {
	display: flex;
	align-items: center;
	margin-left: 15px;
}

.search input {
	padding: 8px 10px;
	border: 1px solid #444;
	background-color: transparent;
	color: white;
	border-radius: 4px;
	margin-right: 5px;
}

.search button {
	background: none;
	border: none;
	color: white;
	font-size: 24px;
	cursor: pointer;
}

.cart-icon {
	position: relative;
	display: flex;
	align-items: center;
	margin-right: 15px;
	text-decoration: none;
	color: inherit;
}

.cart-count {
	position: absolute;
	top: -8px;
	right: -8px;
	background: #ff3e00;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
}

.category-title {
	width: 100%;
	margin: 30px 0 15px 0;
	padding-bottom: 10px;
	font-size: 24px;
	font-weight: bold;
	color: #9198a4;
	text-transform: uppercase;
}

.category-section {
	margin-bottom: 40px;
}

/* Products Grid */
.products-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	padding: 20px 20px;
	margin-bottom: 40px;
	background-color: rgb(13, 16, 23);
}

.product-card {
	background-color: rgb(13, 16, 23);
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.product-image {
	width: 100%;
	height: 300px;
	object-fit: fit;
	transition: transform 0.3s ease;
	border-radius: 10px;
}

.product-card:hover .product-image {
	transform: scale(1.05);
}

.product-info {
	text-align: center;
	padding: 20px 0;
	width: 100%;
}

.product-price {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin: 10px 0;
}

.buy-button {
	background: #ff3e00;
	color: white;
	border: none;
	padding: 10px 40px;
	text-transform: uppercase;
	font-size: 14px;
	cursor: pointer;
	margin: 10px 0;
}

.wishlist-button {
	background: none;
	border: none;
	color: white;
	display: flex;
	align-items: center;
	gap: 5px;
	cursor: pointer;
	font-size: 14px;
	margin: 5px 0;
}

.related-products {
	padding: 2rem;  /* Adiciona espaçamento interno */
	margin: 2rem auto;  /* Centraliza e adiciona margem vertical */
	max-width: 1200px;  /* Limita a largura máxima */
}

.related-products h2 {
	margin-bottom: 2rem;  /* Espaçamento abaixo do título */
	padding: 20px 20px;
}

/* Product Details Page */
.product-details-container {
	max-width: 1400px;
	margin: 40px auto;
	padding: 0 20px;
	background-color: rgb(13, 16, 23);
}

.product-details {
	display: grid;
	grid-template-columns: minmax(300px, 600px) 1fr;
	gap: 60px;
	align-items: start;
}

.product-gallery {
	position: relative;
	width: 100%;
}

.product-main-image {
	width: 100%;
	height: auto;
	max-height: 500px;
	object-fit: contain;
	background-color: white;
	border-radius: 4px;
}

.product-info-detailed {
	padding: 0;
	color: white;
}

.product-title {
	font-size: 1.2rem;
	margin: 10px 0;
	margin-bottom: 20px;
	color: white;
}

.product-price-container {
	margin-bottom: 30px;
}

.price-value {
	font-size: 2.5rem;
	font-weight: bold;
	color: white;
}

.product-description {
	margin: 30px 0;
	color: #888;
	line-height: 1.6;
}

.product-actions {
	display: flex;
	gap: 15px;
	align-items: center;
	margin-top: 30px;
}

.quantity-input {
	width: 80px;
	padding: 10px;
	border: 1px solid #444;
	background-color: transparent;
	color: white;
	border-radius: 4px;
}

.add-to-cart-button {
	background-color: #ff3e00;
	color: white;
	padding: 15px 30px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-weight: bold;
	text-transform: uppercase;
}

.freight-calculation {
	display: grid;
	align-items: center;
	padding: 20px;
	background-color: rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	margin-bottom: 15px;
}

.freight-calculation h4 {
	margin-bottom: 15px;
	font-weight: 600;
}

.freight-calculation .form-control {
	width: 150px;
	padding: 8px;
	border: 1px solid #ddd;
	border-radius: 4px;
}

.freight-calculation .view-frete {
	margin-top: 10px;
}

/* Footer */
.footer_copyright_wrap {
	background-color: rgb(13, 16, 23);
	padding: 60px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer_copyright_inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

.content_wrap {
	text-align: center;
}

.copyright_text {
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.6;
}

/* Social Buttons */
.social-buttons {
	position: fixed;
	bottom: 20px;
	left: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.whatsapp-button {
	padding: 0;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.whatsapp-icon {
	width: 45px;
	height: 45px;
	opacity: 0.8;
}

.instagram-button {
	padding: 0;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(238, 84, 109, 0.2);
}

.instagram-icon {
	width: 45px;
	height: 45px;
	opacity: 0.8;
}

/* Back to top button */
.back-to-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background-color: #ff3e00;
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.back-to-top.show {
	opacity: 1;
	pointer-events: auto;
}

.pickup-option {
	margin-top: 15px;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
}

.pickup-label {
	display: flex;
	align-items: flex-start;
	cursor: pointer;
}

.pickup-checkbox {
	margin-right: 10px;
	margin-top: 3px;
}

.pickup-text {
	line-height: 1.4;
}

/* Product Card Link */
.product-card {
	position: relative;
}

.product-link {
	text-decoration: none;
	color: inherit;
	display: block;
}

.product-card .buy-button,
.product-card .wishlist-button {
	position: relative;
	z-index: 2;
	pointer-events: all;
}

.product-card .product-link:hover {
	text-decoration: none;
}

.calc-frete input[type="text"] {
	width: 100%;
	max-width: 200px;  /* Limita a largura máxima */
	padding: 8px 10px;  /* Aumenta o padding interno */
	border-radius: 8px;  /* Arredonda as bordas */
	border: 1px solid #ccc;
	font-size: 1rem;
	transition: border-color 0.3s ease;
	margin-top: 3px;
}

.calc-frete input[type="text"]:focus {
	outline: none;
	border-color: #666;
	box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.calc-frete .view-frete {
	margin-top: 15px;
}

.calc-frete .load-frete {
	font-size: 0.9rem;
	color: #666;
}

/* Estilos do Carrinho */
.cart-container {
	max-width: 1400px;
	margin: 40px auto;
	padding: 0 20px;
}

.cart-container h1 {
	font-size: 2rem;
	margin-bottom: 30px;
	color: white;
}

.empty-cart {
	text-align: center;
	padding: 50px 20px;
	background-color: rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	margin: 20px 0;
}

.empty-cart .material-icons {
	font-size: 48px;
	color: #666;
	margin-bottom: 20px;
}

.empty-cart p {
	color: #888;
	margin-bottom: 20px;
}

.continue-shopping {
	display: inline-block;
	padding: 12px 24px;
	background-color: #ff3e00;
	color: white;
	text-decoration: none;
	border-radius: 4px;
	transition: background-color 0.3s;
}

.continue-shopping:hover {
	background-color: #e63600;
}

.cart-items {
	margin-bottom: 30px;
}

.cart-item {
	display: grid;
	grid-template-columns: 120px 1fr auto auto auto;
	gap: 20px;
	align-items: center;
	padding: 20px;
	background-color: rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	margin-bottom: 15px;
}

.cart-item-image img {
	width: 100px;
	height: 100px;
	object-fit: cover;
	border-radius: 4px;
}

.cart-item-details h2 {
	font-size: 1.1rem;
	color: white;
	margin-bottom: 8px;
}

.cart-item-price {
	color: #ff3e00;
	font-weight: bold;
}

.cart-item-quantity {
	display: flex;
	align-items: center;
	gap: 10px;
}

.quantity-btn {
	background: none;
	border: 1px solid #444;
	color: white;
	width: 30px;
	height: 30px;
	border-radius: 4px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.quantity-btn:hover {
	background-color: #444;
}

.cart-item-quantity .quantity-input {
	width: 60px;
	padding: 8px;
	text-align: center;
	background-color: transparent;
	border: 1px solid #444;
	color: white;
	border-radius: 4px;
}

.cart-item-subtotal {
	color: white;
	font-weight: bold;
	min-width: 100px;
	text-align: right;
}

.remove-item {
	background: none;
	border: none;
	color: #666;
	cursor: pointer;
	padding: 8px;
}

.remove-item:hover {
	color: #ff3e00;
}

.cart-summary {
	background-color: rgba(255, 255, 255, 0.05);
	padding: 30px;
	border-radius: 8px;
	margin-top: 30px;
}

.summary-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
	color: #888;
}

.summary-row.total {
	color: white;
	font-size: 1.2rem;
	font-weight: bold;
	border-top: 1px solid #444;
	padding-top: 15px;
	margin-top: 15px;
}

.checkout-button {
	display: block;
	width: 100%;
	padding: 15px;
	background-color: #ff3e00;
	color: white;
	border: none;
	border-radius: 4px;
	font-size: 1.1rem;
	font-weight: bold;
	cursor: pointer;
	margin-bottom: 15px;
	text-transform: uppercase;
}

.checkout-button:hover {
	background-color: #e63600;
}

/* Responsividade */
@media (max-width: 768px) {
	.cart-item {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.cart-item-image {
		margin: 0 auto;
	}

	.cart-item-quantity {
		justify-content: center;
	}

	.cart-item-subtotal {
		text-align: center;
	}

	.remove-item {
		margin: 0 auto;
	}
}

/* Responsive Design */
@media (max-width: 1024px) {
	.product-details {
		grid-template-columns: minmax(300px, 500px) 1fr;
		gap: 40px;
	}
}

@media (max-width: 996px) {
	.header-content {
		flex-wrap: wrap;
	}

	.logo {
		margin-bottom: 10px;
		margin-right: 20px;
	}

	.logo-menu-container {
		flex: 0 0 auto; /* Maintain this behavior in responsive mode */
		justify-content: flex-start; /* Keep left alignment */
	}
	
	.header-top {
		justify-content: space-between; /* Maintain space between in responsive mode */
	}

	.nav-menu {
		display: none;
		flex-direction: column;
		position: absolute;
		top: 80px;
		right: 0;
		background-color: #0a0a0f;
		width: 100%;
		text-align: center;
		padding: 20px 0;
		z-index: 100;
	}

	.nav-menu.active {
		display: flex;
	}

	.nav-menu li {
		margin: 10px 0;
	}

	.menu-toggle {
		display: block;
		margin-left: auto;
	}

	.header-actions {
		flex-direction: row;
		align-items: center;
		justify-content: center;
		margin-top: 10px;
	}

	.search {
		margin-left: 10px;
		margin-right: 0;
		margin-bottom: 0px;
		width: 100%;
		justify-content: center;
	}

	.search input {
		width: 80%;
	}

	.cart-icon {
		margin-right: 10px;
	}

	.products-grid {
		grid-template-columns: repeat(1, 1fr);
	}

	.product-details {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.product-main-image {
		max-height: 400px;
	}
}