/* === MULTSTORE MODERN THEME === */
body {
	font-family: 'Nunito', sans-serif;
	font-weight: 400;
	color: #333;
	font-size: 14px;
	line-height: 1.6;
	width: 100%;
	background: #f8f9fa;
}

h1, h2, h3, h4, h5, h6 {
	color: #333;
	font-family: 'Nunito', sans-serif;
}

/* default font size */
.fa {
	font-size: 14px;
}

/* Override the bootstrap defaults */
h1 {
	font-size: 32px;
	font-weight: 700;
}
h2 {
	font-size: 28px;
	font-weight: 600;
}
h3 {
	font-size: 24px;
	font-weight: 600;
}
h4 {
	font-size: 18px;
	font-weight: 500;
}
h5 {
	font-size: 16px;
	font-weight: 500;
}
h6 {
	font-size: 14px;
	font-weight: 500;
}

a {
	color: #e91e63;
	transition: all 0.3s ease;
}
a:hover {
	text-decoration: none;
	color: #c2185b;
}

legend {
	font-size: 18px;
	padding: 7px 0px;
}

label {
	font-size: 14px;
	font-weight: 500;
	color: #333;
}

/* Form controls with modern styling */
select.form-control, 
textarea.form-control, 
input[type="text"].form-control, 
input[type="password"].form-control, 
input[type="datetime"].form-control, 
input[type="datetime-local"].form-control, 
input[type="date"].form-control, 
input[type="month"].form-control, 
input[type="time"].form-control, 
input[type="week"].form-control, 
input[type="number"].form-control, 
input[type="email"].form-control, 
input[type="url"].form-control, 
input[type="search"].form-control, 
input[type="tel"].form-control, 
input[type="color"].form-control {
	font-size: 14px;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 10px 15px;
	transition: all 0.3s ease;
}

.form-control:focus {
	border-color: #e91e63;
	box-shadow: 0 0 0 2px rgba(233, 30, 99, 0.2);
}

.input-group input, .input-group select, .input-group .dropdown-menu, .input-group .popover {
	font-size: 14px;
}

.input-group .input-group-addon {
	font-size: 14px;
	height: auto;
	border-radius: 8px;
}
/* Fix some bootstrap issues */
span.hidden-xs, span.hidden-sm, span.hidden-md, span.hidden-lg {
	display: inline;
}

.nav-tabs {
	margin-bottom: 15px;
}
div.required .control-label:before {
	content: '* ';
	color: #F00;
	font-weight: bold;
}
/* === TOP BAR === */
#top {
	background: linear-gradient(135deg, #f8c0c8, #fce4ec);
	border-bottom: none;
	padding: 8px 0;
	margin: 0;
	min-height: auto;
}

#top .container {
	padding: 0 15px;
}

#top .contact-info {
	color: #333;
	font-size: 13px;
}

#top .contact-info i {
	color: #e91e63;
	margin-right: 5px;
}

#top #top-links ul li {
	margin: 0;
}

#top #top-links ul li a {
	color: #333;
	font-size: 13px;
	text-decoration: none;
	transition: color 0.3s ease;
}

#top #top-links ul li a:hover {
	color: #e91e63;
}

/* === HEADER === */
header {
	background: white;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	padding: 15px 0;
}

/* === LOGO === */
#logo {
	text-align: center;
	margin: 0;
}

#logo h1 {
	margin: 0;
	font-family: 'Nunito', sans-serif;
	color: #e91e63;
	font-weight: 700;
	font-size: 24px;
}

#logo h1 a {
	text-decoration: none;
	color: inherit;
}

#logo h1 div {
	font-size: 12px;
	color: #666;
	font-weight: 400;
}

/* === SEARCH === */
#search {
	margin: 0;
	position: relative;
}

#search .form-control {
	border: 2px solid #e91e63;
	border-radius: 25px;
	padding: 12px 50px 12px 20px;
	font-size: 14px;
	box-shadow: none;
}

#search .form-control:focus {
	border-color: #c2185b;
	box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.2);
}

#search .input-group-btn {
	position: absolute;
	right: 5px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
}

#search .input-group-btn .btn {
	background: #e91e63;
	border: none;
	border-radius: 50%;
	width: 35px;
	height: 35px;
	color: white;
	box-shadow: none;
}

#search .input-group-btn .btn:hover {
	background: #c2185b;
}

/* === CART === */
#cart {
	position: relative;
}

#cart > .btn {
	background: #e91e63;
	border: none;
	border-radius: 25px;
	color: white;
	padding: 8px 15px;
	font-size: 24px;
	transition: all 0.3s ease;
}

#cart > .btn:hover {
	background: #c2185b;
	transform: scale(1.05);
}

#cart .badge {
	position: absolute;
	top: -5px;
	right: -5px;
	background: #ff4757;
	color: white;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	font-size: 10px;
	line-height: 20px;
	text-align: center;
}

#cart.open > .btn {
	background: #c2185b;
	border: 1px solid #c2185b;
	color: white;
	box-shadow: none;
	text-shadow: none;
}

#cart .dropdown-menu {
	background: white;
	border: none;
	border-radius: 12px;
	box-shadow: 0 8px 25px rgba(0,0,0,0.15);
	z-index: 1001;
	min-width: 350px;
	padding: 15px;
}
/* === MENU === */
#menu {
	background: #e91e63;
	border: none;
	min-height: 50px;
	margin: 0;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.all-categories-btn {
	background: #c2185b;
	padding: 15px 20px;
	color: white;
	cursor: pointer;
	transition: background 0.3s ease;
}

.all-categories-btn:hover {
	background: #ad1457;
}

#menu .nav > li > a {
	color: white;
	padding: 15px 20px;
	font-weight: 500;
	font-size: 14px;
	text-decoration: none;
	text-transform: uppercase;
	transition: all 0.3s ease;
	background-color: transparent;
}

#menu .nav > li > a:hover, 
#menu .nav > li.open > a {
	background-color: rgba(255, 255, 255, 0.1);
	color: white;
}

#menu .dropdown-menu {
	background: white;
	border: none;
	border-radius: 0;
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
	padding: 20px;
	min-width: 300px;
}

#menu .dropdown-inner {
	display: block;
}

#menu .dropdown-inner ul {
	display: inline-block;
	vertical-align: top;
	margin-right: 30px;
}

#menu .dropdown-inner a {
	color: #333;
	font-size: 13px;
	text-decoration: none;
	padding: 5px 0;
	display: block;
	transition: color 0.3s ease;
}

#menu .dropdown-inner li a:hover {
	color: #e91e63;
}

#menu .see-all {
	display: block;
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px solid #eee;
	color: #e91e63;
	font-weight: bold;
	text-decoration: none;
	font-size: 13px;
	transition: color 0.3s ease;
}

#menu .see-all:hover {
	color: #c2185b;
}

#menu .btn-navbar {
	background: transparent;
	border: 1px solid white;
	color: white;
	padding: 8px 12px;
	margin-top: 8px;
	margin-right: 15px;
	border-radius: 4px;
}

#menu .btn-navbar:hover {
	background: rgba(255, 255, 255, 0.1);
}
/* === RESPONSIVE DESIGN === */
@media (min-width: 768px) {
	#menu .dropdown:hover .dropdown-menu {
		display: block;
	}
	
	.header-actions {
		display: flex !important;
		justify-content: flex-end;
		align-items: center;
		gap: 15px;
	}
}

@media (max-width: 767px) {
	/* Mobile header adjustments */
	header {
		padding: 10px 0;
	}
	
	.header-actions {
		justify-content: center !important;
		gap: 20px !important;
		margin-top: 15px;
	}
	
	.header-actions > * {
		text-align: center;
	}
	
	/* Mobile search */
	#search {
		margin: 15px 0;
	}
	
	#search .form-control {
		font-size: 16px; /* Prevents zoom on iOS */
		padding: 15px 50px 15px 20px;
	}
	
	#search .input-group-btn .btn {
		width: 40px;
		height: 40px;
	}
	
	/* Mobile menu */
	#menu {
		border-radius: 0;
		margin: 0;
	}
	
	.all-categories-btn {
		width: 100%;
		text-align: center;
		margin-bottom: 10px;
	}
	
	#menu div.dropdown-inner > ul.list-unstyled {
		display: block;
		margin-right: 0;
		margin-bottom: 15px;
	}
	
	#menu div.dropdown-menu {
		margin-left: 0 !important;
		padding: 15px;
		background: rgba(255, 255, 255, 0.95);
		border-radius: 8px;
		margin-top: 10px;
	}
	
	#menu .dropdown-inner {
		display: block;
	}
	
	#menu .dropdown-inner a {
		width: 100%;
		color: #333;
		padding: 10px 0;
		border-bottom: 1px solid #f0f0f0;
	}
	
	#menu .dropdown-menu a:hover,
	#menu .dropdown-menu ul li a:hover {
		background: transparent;
		color: #e91e63;
	}
	
	#menu .see-all {
		margin-top: 15px;
		border-top: 2px solid #e91e63;
		padding-top: 15px;
		color: #e91e63;
		font-weight: bold;
		text-align: center;
	}
	
	/* Mobile cart */
	#cart .dropdown-menu {
		width: calc(100vw - 30px) !important;
		max-width: 350px;
		right: 0 !important;
		left: auto !important;
	}
	
	#cart .dropdown-menu li > div {
		min-width: 100%;
		padding: 0;
	}
}

@media (max-width: 480px) {
	/* Extra small devices */
	#logo h1 {
		font-size: 20px;
	}
	
	#logo h1 div {
		font-size: 10px;
	}
	
	.header-actions {
		gap: 15px !important;
	}
	
	.header-actions a,
	.header-actions .dropdown > button {
		font-size: 20px !important;
	}
	
	.header-actions div[style*="font-size: 10px"] {
		font-size: 9px !important;
	}
}

/* === GENERAL IMPROVEMENTS === */
.dropdown-menu {
	border: none;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.dropdown-menu li > a:hover {
	background-color: #f8f9fa;
	color: #e91e63;
}

/* Button improvements */
.btn {
	border-radius: 8px;
	transition: all 0.3s ease;
	font-weight: 500;
}

.btn-primary {
	background: #e91e63;
	border-color: #e91e63;
}

.btn-primary:hover {
	background: #c2185b;
	border-color: #c2185b;
	transform: translateY(-1px);
}

/* Content area */
#content {
	min-height: 600px;
	background: white;
	border-radius: 12px;
	margin: 20px 0;
	padding: 20px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
/* === FOOTER === */
footer {
	margin-top: 50px;
	padding: 40px 0 20px 0;
	background: linear-gradient(135deg, #f8f9fa, #e9ecef);
	border-top: 3px solid #e91e63;
	color: #333;
}

footer hr {
	border-top: none;
	border-bottom: 1px solid #ddd;
	margin: 20px 0;
}

footer a {
	color: #333;
	font-family: 'Nunito', sans-serif;
	text-decoration: none;
	transition: color 0.3s ease;
}

footer a:hover {
	color: #e91e63;
}

footer h5 {
	font-family: 'Nunito', sans-serif;
	font-size: 16px;
	font-weight: 600;
	color: #333;
	margin-bottom: 15px;
	text-transform: uppercase;
}

footer .social-links a {
	display: inline-block;
	margin-right: 10px;
	padding: 8px;
	background: #e91e63;
	color: white;
	border-radius: 50%;
	transition: all 0.3s ease;
}

footer .social-links a:hover {
	background: #c2185b;
	transform: translateY(-2px);
}
/* alert */
.alert {
	padding: 8px 14px 8px 14px;
}
/* breadcrumb */
.breadcrumb {
	margin: 10px 0 10px 0;
	padding: 8px 0;
	border: 1px solid #ddd;
}
.breadcrumb i {
	font-size: 15px;
}
.breadcrumb > li {
	text-shadow: 0 1px 0 #FFF;
	padding: 0 20px;
	position: relative;
	white-space: nowrap;
}
.breadcrumb > li + li:before {
	content: '';
	padding: 0;
}
.breadcrumb > li:after {
	content: '';
	display: block;
	position: absolute;
	top: -3px;
	right: -5px;
	width: 26px;
	height: 26px;
	border-right: 1px solid #DDD;
	border-bottom: 1px solid #DDD;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
html[dir=rtl] .breadcrumb > li::after {
  top: -3px;
  left: -5px;
  width: 26px;
  height: 26px;
  border-left: 1px solid #DDD;
  border-top: 1px solid #DDD;
  right: unset;
  border-right: unset;
  border-bottom:unset;

}
.pagination {
	margin: 0;
}
/* buttons */
.buttons {
	margin: 1em 0;
}
.btn {
	padding: 7.5px 12px;
	font-size: 12px;
	border: 1px solid #cccccc;
	border-radius: 4px;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
}
.btn-xs {
	font-size: 9px;
}
.btn-sm {
	font-size: 10.2px;
}
.btn-lg {
	padding: 10px 16px;
	font-size: 15px;
}
.btn-lg2 {
	padding: 20px 46px;
	font-size: 17px;
	text-transform: uppercase;
}
.btn-group > .btn, .btn-group > .dropdown-menu, .btn-group > .popover {
	font-size: 12px;
}
.btn-group > .btn-xs {
	font-size: 9px;
}
.btn-group > .btn-sm {
	font-size: 10.2px;
}
.btn-group > .btn-lg {
	font-size: 15px;
}
.btn-default {
	color: #000;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
	background-color: #efefef;
	background-repeat: repeat-x;
	border-color: #dddddd #dddddd #b3b3b3 #b7b7b7;
}
.btn-primary {
	color: #ffffff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	background-color: #3498db;
	background-image: #3498db;
	background-repeat: repeat-x;
	border-color: #3498db;
}
.btn-primary:hover, .btn-primary:active, .btn-primary.active, .btn-primary.disabled, .btn-primary[disabled] {
	background-color: #25293c;
	background-position: 0 -15px;
}
.btn-verde {
	color: #ffffff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	background-color: #4fc55f;
	background-repeat: repeat-x;
	border-color: solid 1px #4fc55f;
	border-bottom: solid 3px #10960f;
	font-weight: bold;
}
.btn-verde:hover, .btn-verde:active, .btn-verde.active {
	background-color: #33ad43;
	background-position: 0 -15px;
	color: #ffffff;
}
.btn-verde.disabled, .btn-verde[disabled] {
	background-color: #ff0000;
	background-position: 0 -15px;
	color: #ffffff;
	border-color: #b50700;
	margin-bottom: 15px;
}
.btn-warning:hover, .btn-warning:active, .btn-warning.active, .btn-warning.disabled, .btn-warning[disabled] {
	box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
}
.btn-danger {
	color: #ffffff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	background-color: #da4f49;
	background-image: linear-gradient(to bottom, #ee5f5b, #bd362f);
	background-repeat: repeat-x;
	border-color: #bd362f #bd362f #802420;
}
.btn-danger:hover, .btn-danger:active, .btn-danger.active, .btn-danger.disabled, .btn-danger[disabled] {
	box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
}
.btn-success {
	color: #ffffff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	background-color: #4fc55f;
	background-repeat: repeat-x;
	border-color: solid 1px #4fc55f;
	border-bottom: solid 3px #10960f;
}
.btn-success:hover, .btn-success:active, .btn-success.active, .btn-success.disabled, .btn-success[disabled] {
	box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
}
.btn-info {
	color: #ffffff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	background-color: #df5c39;
	background-image: linear-gradient(to bottom, #e06342, #dc512c);
	background-repeat: repeat-x;
	border-color: #dc512c #dc512c #a2371a;
}
.btn-info:hover, .btn-info:active, .btn-info.active, .btn-info.disabled, .btn-info[disabled] {
	background-image: none;
	background-color: #df5c39;
}
.btn-link {
	border-color: rgba(0, 0, 0, 0);
	cursor: pointer;
	color: #23A1D1;
	border-radius: 0;
}
.btn-link, .btn-link:active, .btn-link[disabled] {
	background-color: rgba(0, 0, 0, 0);
	background-image: none;
	box-shadow: none;
}
.btn-inverse {
	color: #ffffff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	background-color: #363636;
	background-image: linear-gradient(to bottom, #444444, #222222);
	background-repeat: repeat-x;
	border-color: #222222 #222222 #000000;
}
.btn-inverse:hover, .btn-inverse:active, .btn-inverse.active, .btn-inverse.disabled, .btn-inverse[disabled] {
	background-color: #222222;
	background-image: linear-gradient(to bottom, #333333, #111111);
}
/* list group */
.list-group a {
	border: 1px solid #DDDDDD;
	color: #888888;
	padding: 8px 12px;
}
.list-group a.active, .list-group a.active:hover, .list-group a:hover {
	color: #444444;
	background: #eeeeee;
	border: 1px solid #DDDDDD;
	text-shadow: 0 1px 0 #FFF;
}
/* carousel */
.carousel-caption {
	color: #FFFFFF;
	text-shadow: 0 1px 0 #000000;
}
.carousel-control .icon-prev:before {
	content: '\f053';
	font-family: FontAwesome;
}
.carousel-control .icon-next:before {
	content: '\f054';
	font-family: FontAwesome;
}
/* product list */
.product-thumb {
	border: 1px solid #ddd;
	margin-bottom: 20px;
	overflow: auto;
	box-shadow: 0 1px 6px #e2e2e2;
}
.product-thumb .image {
	text-align: center;
}
.product-thumb .image a {
	display: block;
}
.product-thumb .image a:hover {
	opacity: 0.8;
}
.product-thumb .image img {
	margin-left: auto;
	margin-right: auto;
}
.product-grid .product-thumb .image {
	float: none;
}
@media (min-width: 767px) {
.product-list .product-thumb .image {
	float: left;
	padding: 0 15px;
}
}
.product-thumb h4 {
	font-weight: normal;
}
.product-thumb .caption {
	padding: 0 20px;
	min-height: 130px;
}
.product-list .product-thumb .caption {
	margin-left: 230px;
}
@media (max-width: 1200px) {
.product-grid .product-thumb .caption {
	min-height: 130px;
	padding: 0 10px;
}
}
@media (max-width: 767px) {
.product-list .product-thumb .caption {
	min-height: 0;
	margin-left: 0;
	padding: 0 10px;
}
.product-grid .product-thumb .caption {
	min-height: 138px;
}
}
.product-thumb .rating {
	padding-bottom: 10px;
}
.rating .fa-stack {
	font-size: 8px;
}
.rating .fa-star-o {
	color: #FC0;
	font-size: 15px;
}
.rating .fa-star {
	color: #FC0;
	font-size: 15px;
}
.rating .fa-star + .fa-star-o {
	color: #E69500;
}
h2.price {
	margin: 0;
}
.product-thumb .price {
	color: #444;
}
.product-thumb .price-new {
	font-weight: 600;
}
.product-thumb .price-old {
	color: #999;
	text-decoration: line-through;
	margin-left: 10px;
}
.product-thumb .price-tax {
	color: #999;
	font-size: 12px;
	display: block;
}
.product-thumb .button-group {
	border-top: 1px solid #ddd;
	background-color: #eee;
	overflow: auto;
}
.product-list .product-thumb .button-group {
	border-left: 1px solid #ddd;
}
@media (max-width: 768px) {
	.product-list .product-thumb .button-group {
		border-left: none;
	}
}
.product-thumb .button-group button {
	width: 60%;
	border: none;
	display: inline-block;
	float: left;
	background-color: #eee;
	color: #888;
	line-height: 38px;
	font-weight: bold;
	text-align: center;
	text-transform: uppercase;
}
.product-thumb .button-group button + button {
	width: 40%;
	border-left: 1px solid #ddd;
}
.product-thumb .button-group button:hover {
	color: #444;
	background-color: #ddd;
	text-decoration: none;
	cursor: pointer;
}
@media (max-width: 1200px) {
	.product-thumb .button-group button, .product-thumb .button-group button + button {
		width: 50%;
	}
}
@media (max-width: 767px) {
    .product-thumb .button-group {
        border-top: 1px solid #ddd;
        background-color: #eee;
        overflow: auto;
        display: block; /* Garante que o container dos botões ocupe a largura total */
    }

    .product-list .product-thumb .button-group {
        border-left: none;
    }

    .product-thumb .button-group button {
        width: 100%; /* Botões ocupam a largura total no modo mobile */
        border: none;
        display: block; /* Garante que os botões fiquem um embaixo do outro */
        background-color: #eee;
        color: #888;
        line-height: 38px;
        font-weight: bold;
        text-align: center;
        text-transform: uppercase;
    }

    .product-thumb .button-group button + button {
        border-left: none; /* Remove a borda entre os botões no mobile */
        margin-top: 0px; /* Adiciona um espaçamento entre os botões */
    }

    .product-thumb .button-group button:hover {
        color: #444;
        background-color: #ddd;
        text-decoration: none;
        cursor: pointer;
    }
}
.thumbnails {
	overflow: auto;
	clear: both;
	list-style: none;
	padding: 0;
	margin: 0;
}
.thumbnails > li {
	margin-left: 20px;
}
.thumbnails {
	margin-left: -20px;
}
.thumbnails > img {
	width: 100%;
}
.image-additional a {
	margin-bottom: 20px;
	padding: 5px;
	display: block;
	border: 1px solid #ddd;
}
.image-additional {
	max-width: 78px;
}
.thumbnails .image-additional {
	float: left;
	margin-left: 20px;
}

@media (min-width: 1200px) {
	#content .col-lg-2:nth-child(6n+1),
	#content .col-lg-3:nth-child(4n+1),
	#content .col-lg-4:nth-child(3n+1),
	#content .col-lg-6:nth-child(2n+1) {
		clear:left;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	#content .col-md-2:nth-child(6n+1),
	#content .col-md-3:nth-child(4n+1),
	#content .col-md-4:nth-child(3n+1),
	#content .col-md-6:nth-child(2n+1) {
		clear:left;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	#content .col-sm-2:nth-child(6n+1),
	#content .col-sm-3:nth-child(4n+1),
	#content .col-sm-4:nth-child(3n+1),
	#content .col-sm-6:nth-child(2n+1) {
		clear:left;
	}
}

/* fixed colum left + content + right*/
@media (min-width: 768px) {
    #column-left  .product-layout .col-md-3 {
       width: 100%;
    }

	#column-left + #content .product-layout .col-md-3 {
       width: 50%;
    }

	#column-left + #content + #column-right .product-layout .col-md-3 {
       width: 100%;
    }

    #content + #column-right .product-layout .col-md-3 {
       width: 100%;
    }
}

/* fixed product layouts used in left and right columns */
#column-left .product-layout, #column-right .product-layout {
	width: 100%;
}

/* fixed mobile cart quantity input */
.input-group .form-control[name^=quantity] {
	min-width: 50px;
}

/* Missing focus and border color to overwrite bootstrap */
.btn-info:hover, .btn-info:active, .btn-info.active, .btn-info.disabled, .btn-info[disabled] {
    background-image: none;
    background-color: #df5c39;
}
/* Mostrar botões de compra e lista de desejos ao passar o mouse */
.product-layout .button-group {
    display: none; /* Oculto por padrão */
    position: absolute;
    bottom: 34px; /* Distância do fundo da imagem */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10; /* Garante que os botões fiquem sobre a imagem */
    background-color: rgba(255, 255, 255, 0.8); /* Fundo semitransparente para destacar os botões */
    padding: 0px;
    border-radius: 5px; /* Arredonda as bordas do contêiner dos botões */
    box-shadow: 0 1px 6px #e2e2e2;
    border: 1px solid #dddddd;
}

.product-layout:hover .button-group {
    display: flex; /* Mostra os botões ao passar o mouse */
    justify-content: space-between;
}

/* Estilo adicional para os botões */
.product-layout .button-group button {
    margin: 0; /* Espaçamento entre os botões */
    border: none; /* Remove a borda dos botões */
    padding: 0px;
    border-radius: 0px; /* Arredonda as bordas dos botões */
    transition: background-color 0.3s; /* Animação suave para hover */
    width: 250px;
    line-height: 48px;
}

.product-layout .button-group button:hover {
    background-color: #c04d33; /* Cor dos botões ao passar o mouse */
}
html[dir=rtl] .checkbox input[type="checkbox"],
html[dir=rtl] .checkbox-inline input[type="checkbox"],
html[dir=rtl] .radio input[type="radio"],
html[dir=rtl] .radio-inline input[type="radio"] {
    position: absolute;
    margin-top: 4px\9;
    margin-right: -20px;
      margin-left: unset;
}
html[dir=rtl] .input-group-btn:last-child > .btn {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
html[dir=rtl] .input-group .form-control:first-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-top-left-radius: unset;
    border-bottom-left-radius: unset;
}
html[dir=rtl] .container .row:first-child  .col-sm-4, html[dir=rtl] .container .row:first-child  .col-sm-5 {
  float: right;

}
html[dir=rtl] #cart .dropdown-menu {
  left: 0;
  right: auto;

}
@media (min-width: 768px) {
   
    html[dir=rtl] .navbar-nav {
        float: right;
        margin: 0;
    }
    
    html[dir=rtl] .navbar-nav > li {
        float: right;
    }
   
}
/* Modificações para o modo mobile */
@media (max-width: 767px) {
    .product-layout .button-group {
        display: flex !important; /* Sempre visível no mobile */
        position: relative; /* Ajustar a posição para não sobrepor outros elementos */
        bottom: unset; /* Remove a distância do fundo da imagem */
        left: unset;
        transform: unset;
        z-index: auto;
        background-color: rgba(255, 255, 255, 1); /* Fundo totalmente opaco para o mobile */
        padding: 0px;
        border-radius: 0px; /* Mantém as bordas retas no mobile */
        box-shadow: none; /* Remove a sombra no mobile */
        border: none; /* Remove a borda no mobile */
        width: 100%; /* Ajusta a largura para o mobile */
        justify-content: center; /* Centraliza os botões no mobile */
        border-top: 1px solid #ddd;
    }
    .product-thumb .caption {
    padding: 0 8px;
    min-height: 130px;
    }

    .product-layout .button-group button {
        margin: 0; /* Espaçamento entre os botões */
        border: none; /* Remove a borda dos botões */
        padding: 0px;
        border-radius: 0px; /* Arredonda as bordas dos botões */
        transition: background-color 0.3s; /* Animação suave para hover */
        width: 50%;
        line-height: 35px;
    }
}