:root {
    --dark-bg: #121212;
    --dark2-bg: #1a1a1a;
    --dark3-bg: #242424;
    --accent: #ff5c5c;
    --text-muted: #aaa;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.15);
	
	--vermelho-logo: #c62828;
	--vermelho-escuro: #b71c1c;
	--vermelho-claro: #ef5350;
	--hover-dark: #343a40;
}

body {
    background-color: var(--dark-bg);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    margin: 0;
	
}

.nav-cart {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.3rem;
	font-weight: 500;
	color: var(--vermelho-logo);
	text-decoration: none;
}

.nav-cart .cart-icon {
	font-size: 1.6rem;
	line-height: 1;
}

.nav-cart .cart-text {
	font-size: 1rem;
	position: relative;
	padding-top: 0.4rem;
}

.nav-cart .cart-count {
	background-color: var(--vermelho-logo);

	position: absolute;
	top: -6px;
	right: -10px;
	font-size: 0.65rem;
	color: #fff;
	padding: 2px 5px;
	border-radius: 12px;
	font-weight: 700;
	line-height: 1;
	min-width: 18px;
	text-align: center;
}

.dropdown-menu li {
	padding: 0.3rem 1rem;
}

.dropdown-toggle::after {
	display: none;
}

.profile-icon {
	font-size: 1.5rem;
	color: var(--vermelho-logo);

}

.navbar-nav .nav-link {
	font-weight: 500;
}


/* Show dropdown on hover */
.profile-dropdown:hover .dropdown-menu {
	display: block;
	margin-top: 0;
}

/* Dark dropdown styling */
.profile-dropdown .dropdown-menu {
	background-color: #212529;
	border: none;
	border-radius: 10px;
	padding: 0.5rem 0;
	min-width: 220px;
	animation: fadeIn 0.2s ease-in-out;
}

.profile-dropdown .dropdown-item {
	color: #f8f9fa;
	font-size: 0.9rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.profile-dropdown .dropdown-item:hover {
	background-color: var(--hover-dark);
	color: var(--vermelho-claro);
}

.profile-dropdown .dropdown-divider {
	border-color: #444;
}

/* Simple animation */
@keyframes fadeIn {
	from {
        opacity: 0;
        transform: translateY(5px);
	}
	
	to {
        opacity: 1;
        transform: translateY(0);
	}
}

/* Ensure dropdown behaves properly */
.profile-dropdown {
	position: relative;
}

.custom-profile-dropdown {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background-color: #212529;
	border-radius: 0.5rem;
	padding: 0.5rem 0;
	min-width: 220px;
	z-index: 1000;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Show dropdown on hover */
.profile-dropdown:hover .custom-profile-dropdown {
	display: block;
}

/* Dropdown items */
.custom-profile-dropdown a.dropdown-item {
	color: #f8f9fa;
	padding: 0.5rem 1rem;
	transition: background 0.2s;
	display: flex;
	align-items: center;
}

/* Hover effect */
.custom-profile-dropdown a.dropdown-item:hover {
	background-color: #343a40;
	color: #fff;
}

/* Icon spacing */
.custom-profile-dropdown i {
	margin-right: 0.5rem;
}

/* Colored icons */
.custom-profile-dropdown i.fa-sign-in-alt {
	color: #f0ad4e;
}

/* Orange */
.custom-profile-dropdown i.fa-user-plus {
	color: #5bc0de;
}

/* Sky Blue */
.custom-profile-dropdown i.fa-box {
	color: #28a745;
}

/* Green */
.custom-profile-dropdown i.fa-coins {
	color: #ffc107;
}

/* Yellow */
.custom-profile-dropdown i.fa-envelope {
	color: #17a2b8;
}

/* Teal */
.custom-profile-dropdown i.fa-credit-card {
	color: #007bff;
}

/* Blue */
.custom-profile-dropdown i.fa-heart {
	color: var(--vermelho-logo);

}

/* Red */
.custom-profile-dropdown i.fa-ticket-alt {
	color: var(--vermelho-escuro);

}

/* Purple */

.profile-dropdown-link span {
	font-size: 0.7rem;
}







/* Categories dropdown container */
.categories-dropdown {
	position: relative;
}

/* Hide bootstrap default arrow */
.categories-dropdown-toggle.dropdown-toggle::after {
	display: none;
}

/* Dropdown menu styling */
.categories-dropdown .dropdown-menu {
	display: none;
	/* hide by default */
	position: absolute;
	top: 100%;
	left: 0;
	background-color: #212529;
	/* dark bg */
	border: none;
	border-radius: 10px;
	padding: 0.5rem 0;
	min-width: 220px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	animation: fadeIn 0.2s ease-in-out;
	z-index: 1000;
}

/* Show dropdown on hover */
.categories-dropdown:hover .dropdown-menu {
	display: block;
}

/* Dropdown items */
.categories-dropdown .dropdown-item {
	color: #f8f9fa;
	font-size: 0.9rem;
	padding: 0.5rem 1rem;
	transition: background-color 0.2s;
}

/* Hover on dropdown items */
.categories-dropdown .dropdown-item:hover {
	background-color: var(--hover-dark);
	color: var(--vermelho-claro);

}

/* Fade-in animation */
@keyframes fadeIn {
	from {
        opacity: 0;
        transform: translateY(5px);
	}
	
	to {
        opacity: 1;
        transform: translateY(0);
	}
}

.search-wrapper-desktop {
	width: 100%;
	max-width: 500px;
	margin-left: 10%;
	/* <--- Move the whole wrapper, not the input */
	position: relative;
	/* <--- Essential for absolutely positioning the button */
}

.search-input-custom {
	width: 100%;
	padding: 0.5rem 1rem;
	padding-right: 3rem;
	border-radius: 30px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	font-size: 1rem;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.search-input-custom::placeholder {
	color: rgba(255, 255, 255, 0.7);
}

.search-btn-desktop {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	background-color: transparent;
	border: none;
	color: var(--vermelho-logo);

	font-size: 1.2rem;
	cursor: pointer;
}


/* === Mobile Search === */
/* Mobile search input (more right padding for both icons) */
.search-input-mobile {
	padding: 0.75rem 1rem;
	padding-right: 3.5rem;
	/* Increased for search icon */
	border-radius: 30px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	font-size: 1rem;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.search-input-mobile::placeholder {
	color: rgba(255, 255, 255, 0.7);
}

/* Search icon inside input (mobile) */
.mobile-search-btn {
	position: absolute;
	top: 60%;
	right: 1rem;
	/* keep it inside padding */
	transform: translateY(-50%);
	background: transparent;
	border: none;
	color: var(--vermelho-logo);

	font-size: 1.2rem;
	z-index: 10;
}

/* Close (X) button - OUTSIDE the input */

.btn-close-mobile-search {
	position: absolute;
	top: 50%;
	right: -2.2rem;
	/* Push it completely outside the search input */
	transform: translateY(-50%);
	background: none;
	border: none;
	color: #fff;
	font-size: 1.8rem;
	z-index: 100;
	padding: 0;
	line-height: 1;
	cursor: pointer;
}

/* Default for larger screens */
.suggestion-box {
	position: absolute;
	top: 105%;
	left: 0;
	width: 100%;
	margin-left: 32.5%;
	max-width: 500px;
	max-height: 250px;
	overflow-y: auto;
	background: rgba(30, 30, 30, 0.9);
	border-radius: 30px;
	z-index: 1050;
	color: #fff;
	font-size: 0.95rem;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

/* Responsive adjustments for small screens */
@media (max-width: 768px) {
	.suggestion-box {
        margin-left: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: none;
        border-radius: 20px;
        font-size: 0.9rem;
	}
}


/* Individual suggestion item */
.suggestion-box .suggestion-item {
	padding: 10px 15px;
	display: flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	transition: background-color 0.15s ease-in-out;
}

/* Hover effect on suggestions */
.suggestion-box .suggestion-item:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

/* Suggestion image */
.suggestion-box img {
	width: 40px;
	height: 40px;
	object-fit: cover;
	border-radius: 8px;
	flex-shrink: 0;
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
}

/* No results or error message style */
.suggestion-box .no-results,
.suggestion-box .error-msg {
	padding: 10px 15px;
	color: rgba(255, 255, 255, 0.6);
	font-style: italic;
	cursor: default;
}

/* Hero Section Styling */
.hero-section {
    height: 100vh;
    overflow: hidden;
}

.video-background video {
    object-fit: cover;
    height: 100vh;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Dark overlay */
    z-index: 1;
}

.hero-content {
    z-index: 2;
    padding: 0 1rem;
    width: 100%;
}

/* Responsive Typography */
@media (max-width: 768px) {
    .hero-content h1 {
		font-size: 2rem;
	}
	
    .hero-content p {
		font-size: 1rem;
	}
	
    .hero-content .btn {
		font-size: 0.9rem;
		padding: 0.6rem 1.2rem;
	}
}

@media (max-width: 480px) {
    .hero-content h1 {
		font-size: 1.6rem;
	}
	
    .hero-content p {
		font-size: 0.95rem;
	}
	
    .hero-content .btn {
		font-size: 0.85rem;
		padding: 0.5rem 1rem;
	}
	
    .d-flex.gap-3 {
		flex-direction: column;
		gap: 0.75rem;
	}
}

/* Custom CSS */
.hero-search {
    transition: all 0.3s ease;
}

.mobile-search {
    background-color: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-toggle {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-toggle:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Animation for mobile search */
.mobile-search.show {
    display: block !important;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
		opacity: 0;
		transform: translateY(-10px);
	}
	
    to {
		opacity: 1;
		transform: translateY(0);
	}
}

.featured-categories-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/images/featured-bg.jpg') center/cover no-repeat;
    position: relative;
    min-height: 100vh;
    overflow-y: auto;
}

.category-card {
    height: 280px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.category-image {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

/* Desktop - show on hover */
@media (hover: hover) and (pointer: fine) {
    .category-overlay {
		opacity: 0;
		transition: opacity 0.3s ease;
	}
	
    .category-card:hover .category-overlay {
		opacity: 1;
	}
}

/* Mobile - always show */
@media (max-width: 768px) {
    .category-overlay {
		opacity: 1;
		background: rgba(0, 0, 0, 0.5);
	}
	
    .category-card {
		height: 220px;
		margin-bottom: 1.5rem;
	}
	
    .featured-categories-section {
		min-height: auto;
		padding: 2rem 0;
	}
}

.new-arrivals-section {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('assets/images/arrival.jpg') center/cover no-repeat;
    min-height: 100vh;
    position: relative;
}

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

.product-card:hover {
    transform: translateY(-10px);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 0.5rem;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.card-img-top {
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .card-img-top {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .new-arrivals-section {
		min-height: auto;
		padding: 3rem 0;
	}
	
    .card-img-top {
		height: 200px;
	}
	
    .product-overlay {
		opacity: 1;
		background: rgba(0, 0, 0, 0.5);
	}
}

.special-offers-section {
    position: relative;
}

.promo-card {
    transition: all 0.4s ease;
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .special-offers-section {
		min-height: auto !important;
		padding: 3rem 0 !important;
	}
	
    .promo-card {
		height: 250px !important;
		margin-bottom: 1.5rem !important;
	}
}

/* Inline CSS as fallback */
.special-offers-section {
    position: relative;
}

.promo-card {
    transition: all 0.4s ease;
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .special-offers-section {
		min-height: auto !important;
		padding: 3rem 0 !important;
	}
	
    .promo-card {
		height: 250px !important;
		margin-bottom: 1.5rem !important;
	}
}

.why-choose-us-section {
    min-height: 100vh;
    position: relative;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    padding: 2rem 1.5rem !important;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--bs-primary);
    transform: rotateY(180deg);
}

.feature-hover-content {
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-hover-content {
    opacity: 1;
    height: auto;
}

@media (max-width: 992px) {
    .feature-card {
		padding: 1.5rem !important;
	}
	
    .feature-icon {
		width: 70px;
		height: 70px;
	}
}

@media (max-width: 768px) {
    .why-choose-us-section {
		min-height: auto;
		padding: 4rem 0;
	}
	
    .feature-card {
		margin-bottom: 1rem;
	}
	
    .feature-hover-content {
		opacity: 1;
		height: auto;
	}
}

.instagram-feed-section {
    position: relative;
    padding: 5rem 0;
}

.btn-instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white !important;
    border: none;
    font-weight: 500;
}

.instagram-post {
    aspect-ratio: 1/1;
    transition: all 0.3s ease;
}

.instagram-post img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.instagram-post:hover img {
    transform: scale(1.1);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-post:hover .instagram-overlay {
    opacity: 1;
}

.instagram-grid {
    margin: 0 -1px;
}

@media (max-width: 768px) {
    .instagram-feed-section {
		padding: 3rem 0;
	}
	
    .instagram-overlay {
		opacity: 1;
		background: rgba(0, 0, 0, 0.3);
	}
}

.btn-glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: #fff;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease-in-out;
}

.btn-glass:hover {
    background-color: #fff;
    color: #000;
}

/* Floating Bot Button - Modern Design with Image */
#chat-toggle {
	position: fixed;
	bottom: 25px;
	right: 25px;
	width: 60px;
	height: 60px;
	background: url('../images/chatbot.jpg') center/cover no-repeat;
	background-color: #fdaf1e;
	color: white;
	border: none;
	border-radius: 50%;
	font-size: 28px;
	box-shadow: 0 4px 20px rgba(255, 193, 79, 0.3),
	0 0 0 4px rgba(255, 255, 255, 0.1);
	z-index: 9998;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

#chat-toggle:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 25px rgba(255, 193, 79, 0.4),
	0 0 0 4px rgba(255, 255, 255, 0.15);
}

#chat-toggle:active {
	transform: scale(0.95);
}

/* Pulse Animation */
@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(255, 193, 79, 0.7);
	}
	
	70% {
		box-shadow: 0 0 0 12px rgba(255, 193, 79, 0);
	}
	
	100% {
		box-shadow: 0 0 0 0 rgba(255, 193, 79, 0);
	}
}

#chat-toggle.pulse {
	animation: pulse 1.5s infinite;
}

/* Modern Chat Window */
#chat-widget {
	position: fixed;
	bottom: 100px;
	right: 25px;
	width: 350px;
	max-width: calc(100vw - 50px);
	background: #212529;
	color: #f8f9fa;
	border-radius: 15px;
	padding: 0;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	z-index: 9999;
	display: none;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Chat Header */
.chat-header {
	background: linear-gradient(135deg, #343a40 0%, #212529 100%);
	padding: 12px 15px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	display: flex;
	align-items: center;
}

.chat-header img {
	width: 24px;
	height: 24px;
	margin-right: 10px;
	filter: invert(75%) sepia(63%) saturate(576%) hue-rotate(166deg) brightness(93%) contrast(91%);
}

.chat-header h6 {
	margin: 0;
	font-weight: 600;
}

/* Chat Body */
#chat-box {
	height: 300px;
	max-height: 50vh;
	overflow-y: auto;
	padding: 15px;
	background: #1a1d20;
}

.chat-message {
	margin-bottom: 15px;
	display: flex;
	flex-direction: column;
}

.bot-message {
	align-items: flex-start;
}

.user-message {
	align-items: flex-end;
}

.message-bubble {
	max-width: 80%;
	padding: 10px 15px;
	border-radius: 18px;
	line-height: 1.4;
	position: relative;
	word-wrap: break-word;
}

.bot-message .message-bubble {
	background: #2c3034;
	border-bottom-left-radius: 5px;
	color: #e9ecef;
}

.user-message .message-bubble {
	background: #495057;
	border-bottom-right-radius: 5px;
	color: white;
}

.message-time {
	font-size: 0.7rem;
	color: #adb5bd;
	margin-top: 5px;
}

/* Chat Footer */
.chat-footer {
	padding: 12px;
	background: #212529;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	display: flex;
	gap: 8px;
}

#chat-input {
	flex: 1;
	background: #2c3034;
	border: 1px solid rgba(255, 255, 255, 0.05);
	color: white;
	border-radius: 20px;
	padding: 8px 15px;
	outline: none;
	transition: all 0.3s;
}

#chat-input:focus {
	border-color: rgba(255, 193, 79, 0.3);
	box-shadow: 0 0 0 0.25rem rgba(255, 193, 79, 0.1);
}

#chat-submit {
	background: linear-gradient(135deg, #fdaf1e 0%, #0d47a1 100%);
	border: none;
	color: white;
	border-radius: 20px;
	padding: 8px 15px;
	cursor: pointer;
	transition: all 0.3s;
	min-width: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}

#chat-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(255, 193, 79, 0.2);
}

/* Custom Scrollbar */
#chat-box::-webkit-scrollbar {
	width: 6px;
}

#chat-box::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.05);
}

#chat-box::-webkit-scrollbar-thumb {
	background: rgba(255, 193, 79, 0.3);
	border-radius: 3px;
}

#chat-box::-webkit-scrollbar-thumb:hover {
	background: rgba(255, 193, 79, 0.5);
}

/* Responsive Design */
@media (max-width: 576px) {
	#chat-toggle {
		width: 50px;
		height: 50px;
		bottom: 15px;
		right: 15px;
	}
	
	#chat-widget {
		bottom: 80px;
		right: 15px;
		width: calc(100vw - 30px);
	}
	
	.message-bubble {
		max-width: 90%;
	}
}

@media (max-height: 600px) {
	#chat-box {
		height: 200px;
	}
}

.footer-section {
	background-color: #1a1a1a;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-link {
	text-decoration: none;
	transition: all 0.2s ease;
}

.footer-link:hover {
	color: white !important;
	padding-left: 5px;
}

.social-icons i {
	font-size: 1.2rem;
	transition: all 0.2s ease;
}

.social-icons a:hover i {
	transform: translateY(-3px);
	color: var(--bs-primary) !important;
}

.back-to-top {
	width: 50px;
	height: 50px;
	bottom: 20px;
	right: 20px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 999;
}

.back-to-top:hover {
	background-color: var(--vermelho-logo) !important;
}

@media (max-width: 768px) {
	.footer-section {
		text-align: center;
	}
	
	.footer-link:hover {
		padding-left: 0;
	}
	
	.social-icons {
		justify-content: center;
	}
}

/* lista products */

.product-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background-color: #212529;
    color: #f8f9fa;
  }

  .product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  .product-card img {
    height: 250px;
    object-fit: cover;
    border-bottom: 1px solid #343a40;
  }

  .discount-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: #dc3545;
    background-color: var(--vermelho-logo);

    padding: 6px 10px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    z-index: 2;
  }

  .wishlist-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 1.3rem;
    color: #adb5bd;
    cursor: pointer;
    z-index: 2;
  }

  .wishlist-icon.active {
    color: var(--vermelho-logo);

  }

  .price-container {
    margin-top: 10px;
  }

  .current-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #28a745;
  }

  .original-price {
    font-size: 0.95rem;
    color: #adb5bd;
    text-decoration: line-through;
    margin-left: 8px;
  }

  .btn-group .btn {
    font-size: 0.85rem;
    padding: 6px 10px;
    border-radius: 5px;
  }

  .btn-dark {
    background-color: var(--vermelho-logo);
	color: #fff;
	border-color: var(--vermelho-logo);

  }

  .btn-dark:hover {
    background-color: var(--vermelho-escuro);
	border-color: var(--vermelho-escuro);

  }

  .btn-outline-dark {
    border: 1px solid #6c757d;
    color: #dee2e6;
  }

  .btn-outline-dark:hover {
    background-color: #495057;
    color: #fff;
    border-color: #495057;
  }
  
  .pagination .page-link {
	background-color: #1f1f1f;   /* Fundo escuro */
	color: #ffa733;              /* Texto laranja igual ao título */
	border: 1px solid #444;      /* Borda discreta */
	transition: 0.2s;
}

.pagination .page-link:hover {
	background-color: #ffa733;   /* Hover laranja */
	color: #1f1f1f;              /* Texto escuro */
}

.pagination .page-item.active .page-link {
	background-color: var(--vermelho-logo);
	border-color: var(--vermelho-logo);
	color: #fff;

}

.pagination {
	margin-top: 40px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
	filter: brightness(0) saturate(100%) invert(77%) sepia(92%) saturate(349%) hue-rotate(1deg) brightness(105%) contrast(103%);
}

.color-dot {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 1px solid #999;
	display: inline-block;
}

.color-dots {
	display: flex;
	gap: 6px;
	margin-top: 6px;
}

