.price {
	display: flex;
	align-items: center;
}

.price > .sprite {
	flex-shrink: 0;
	margin-right: 10px;
}

.price > .title {
	margin-right: 5px;
}

.price > .text {
	display: none;
	color: #c7c7c7;
	text-decoration: line-through;
}

.price.is-purple {
	color: #111111;
}

@media (min-width: 800px) {
	.price > .text {
		display: block;
		color: #c7c7c7;
		text-decoration: line-through;
	}
}

.specs {
	margin: 0;
}

.specs > .title {
	margin-bottom: 5px;
}

.specs > .text {
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid #ebebeb;
}

.specs > .text:last-child {
	margin-bottom: 0;
}

@media (min-width: 800px) {
	.specs > .title {
		margin-bottom: 10px;
	}
	.specs > .text {
		border-bottom: none;
	}
	.specs > .text:last-child {
		padding-bottom: 0;
	}
}

.comment {
	padding: 20px;
	background: #f4f4f4;
	border-radius: 25px;
}

.comment > .title {
	margin-bottom: 5px;
}

.comment > .stars {
	margin-bottom: 10px;
}

.comment > .text {
	font-size: 14px;
	line-height: 20px;
}

.comment > .text.is-comment {
	margin-bottom: 15px;
}

.comment > .text.has-sprite {
	margin-top: 10px;
	font-weight: 700;
	font-size: 14px;
	line-height: 18px;
}

.comment > .text.has-sprite > .sprite {
	margin-right: 10px;
}

.rating {
	position: relative;
	overflow: hidden;
	display: flex;
}

.rating > .sprite {
	cursor: pointer;
	margin-right: 20px;
	filter: grayscale(100%);
	transition: filter 0.25s;
}

.rating > .sprite:hover, .rating > .sprite:active {
	transform: scale(1.1);
	filter: grayscale(0%);
}

.rating > .sprite.is-active {
	filter: grayscale(0%);
}

.rating > input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.mproduct {
	position: relative;
	overflow: hidden;
	padding: 20px 20px 0;
}

.mproduct-images {
	position: relative;
	margin: 0 0 15px;
}

.mproduct-images > .swiper {
	overflow: visible;
	z-index: 1;
	width: calc(100% + 10px);
	margin: 0 -5px;
}

.mproduct-images > .swiper > .swiper-wrapper > .swiper-slide {
	padding: 0 5px;
}

.mproduct-images > .swiper > .swiper-wrapper > .swiper-slide > .link {
	padding: 10px;
	position: relative;
	overflow: hidden;
	border: 1px solid #ebebeb;
	border-radius: 25px;
}

.mproduct-images > .swiper > .swiper-pagination {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	top: auto;
	bottom: auto;
	margin-top: 20px;
}

.mproduct-images > .swiper > .swiper-pagination > .swiper-pagination-bullet {
	display: block;
	margin: 0 3px;
}

.mproduct-images > .swiper > .swiper-pagination > .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: #454545;
}

.mproduct-images > .circle {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 2;
}

.mproduct-images > .circle > .sprite {
	margin-bottom: -1px;
}

.mproduct-images > .circle:hover, .mproduct-images > .circle:active {
	border-color: #ff6600;
	background-color: #ff6600;
}

.mproduct-images-share {
	position: absolute;
	overflow: hidden;
	z-index: 3;
	top: 60px;
	right: 10px;
	width: 40px;
	height: 40px;
	border: 1px solid #c7c7c7;
	border-radius: 20px;
	background: #fff;
	transition: height 0.25s;
}

.mproduct-images-share > .layer {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 0;
	outline: 0;
	background: none;
	cursor: pointer;
	filter: brightness(100%);
	transition: filter 0.25s;
}

.mproduct-images-share > .list {
	align-items: center;
}

.mproduct-images-share > .list > .list-item {
	padding: 10px 5px;
}

.mproduct-images-share > .list > .list-item > .link {
	padding: 5px;
	margin: -5px;
}

.mproduct-images-share:hover, .mproduct-images-share:active {
	height: 170px;
	background-color: #c7c7c7;
}

.mproduct-images-share:hover > .layer, .mproduct-images-share:active > .layer {
	filter: brightness(1000%);
}

.mproduct-header {
	padding-bottom: 25px;
	border-bottom: 1px solid #c7c7c7;
}

.mproduct-header > .wrapper {
	margin-bottom: 2px;
	display: flex;
	align-items: center;
}

.mproduct-header > .wrapper > .title {
	margin-right: 10px;
	color: #111111;
}

.mproduct-header > .title {
	margin-bottom: 15px;
	font-weight: 400;
}

.mproduct-header > .text {
	margin-bottom: 10px;
	color: #c7c7c7;
	font-size: 12px;
}

.mproduct-content {
	padding: 15px 0;
	border-bottom: 1px solid #c7c7c7;
}

.mproduct-content-details-footer {
	margin-top: 15px;
	padding: 10px 15px;
	background: #f4f4f4;
	color: #7f7f7f;
	font-size: 13px;
	border-radius: 20px;
	line-height: 1.2;
}

.mproduct-content-details-footer span{display: block; margin-bottom: 6px; padding: 0; }

.mproduct-content-details-footer span::before {
		content: ''; 
		display: inline-block; 
		width: 6px; 
		height: 6px; 
		background-color: #7f7f7f; 
		border-radius: 50%;
		margin-right: 6px; 
		vertical-align: middle; 
	}

.mproduct-specs {
	padding: 20px 0;
	border-bottom: 1px solid #c7c7c7;
}

.mproduct-specs > .title {
	color: #777777;
	text-align: center;
	margin-bottom: 20px;
}

.mproduct-comments {
	padding: 20px 0;
	border-bottom: 1px solid #c7c7c7;
}

.mproduct-comments > .wrapper {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #ebebeb;
}

.mproduct-comments > .wrapper > .button {
	width: 100%;
	justify-content: center;
	border-radius: 15px;
}

.mproduct-comments > .swiper {
	overflow: visible;
	width: calc(100% + 10px);
	margin: 0 -5px;
}

.mproduct-comments > .swiper > .swiper-wrapper > .swiper-slide {
	padding: 0 5px;
}

@media (min-width: 800px) {
	.mproduct {
		display: none;
	}
}

.product {
	display: block;
	padding: 0 0 40px;
}

@media (max-width: 799px) {
	.product > .wrapper.is-centered {
		padding: 0 20px;
	}
	.product-header {
		padding: 15px 0;
		margin-bottom: 20px;
		border-bottom: 1px solid #f0f0f0;
	}
	.product-header > .title.is-small {
		color: #ff6600;
		font-size: 13px;
		margin-bottom: 6px;
	}
	.product-header > .title.is-medium {
		font-size: 20px;
		line-height: 1.35;
		margin-bottom: 6px;
	}
	.product-header > .text {
		font-size: 13px;
		color: #7f7f7f;
	}
	.product-content {
		margin-bottom: 30px;
	}
	.product-content-images > .swiper.is-original {
		border: 2px solid #f5f5f5;
		border-radius: 20px;
		overflow: hidden;
	}
	.product-content-images > .swiper.is-original > .wrapper {
		display: none;
	}
	.product-content-details {
		padding: 20px 0 0;
	}
	.product-content-details .price {
		margin-bottom: 15px;
	}
	.product-content-details .price .title {
		font-size: 26px;
		line-height: 1.2;
	}
	.product-content-details .button.is-whatsapp {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		padding: 14px 18px;
		border-radius: 18px;
		font-size: 16px;
	}
	.product-content-details .button.is-whatsapp .sprite {
		margin-right: 8px;
	}
	.product-content-details-footer {
		margin-top: 16px;
		padding: 12px 14px;
		border-radius: 14px;
		background: #f7f7f7;
		font-size: 12px;
		line-height: 1.5;
		color: #7f7f7f;
	}
	.product-sections {
		margin-top: 25px;
	}
	.product-sections > .list {
		display: flex;
		gap: 8px;
		margin: 0 0 15px;
		padding-bottom: 10px;
		border-bottom: 2px solid #f4f4f4;
	}
	.product-sections > .list .link {
		padding: 8px 16px;
		border-radius: 16px;
		font-size: 14px;
		font-weight: 600;
		color: #7f7f7f;
	}
	.product-sections > .list .link.is-active {
		background: #ff6600;
		color: #fff;
	}
	.product--section {
		display: none;
	}
	.product--section.is-active {
		display: block;
	}
	.product-sections .content {
		font-size: 14px;
		line-height: 1.65;
		color: #454545;
	}
	.product-sections .specs {
		margin: 0;
	}
	.product-sections .specs .title {
		font-size: 14px;
	}
	.product-sections .specs .text {
		font-size: 14px;
		margin: 0 0 12px;
	}
}

@media (min-width: 800px) {
	.product {
		display: block;
		position: relative;
		overflow: hidden;
		padding-bottom: 120px;
	}
	.product-header {
		padding-bottom: 15px;
		margin-bottom: 25px;
		border-bottom: 1px solid #c7c7c7;
	}
	.product-header > .title.is-small {
		color: #ff6600;
	}
	.product-header > .title.is-medium {
		font-weight: 400;
	}
	.product-header > .text {
		font-size: 14px;
		margin-bottom: 10px;
	}
	.product-content {
		display: flex;
		margin-bottom: 100px;
	}
	.product-content-images {
		position: relative;
		width: 400px;
		max-width: 45%;
		flex-shrink: 0;
	}
	.product-content-images .img {
		width: auto;
		max-width: 100%;
		max-height: 460px;
		margin: 0 auto;
	}
	.product-content-images > .swiper.is-original {
		border: 2px solid #f5f5f5;
		border-radius: 20px;
	}
	.product-content-images > .swiper.is-original::after, .product-content-images > .swiper.is-original::before {
		display: none;
	}
	.product-content-images > .swiper.is-original > .wrapper {
		display: flex;
		position: absolute;
		z-index: 9;
		bottom: 20px;
		left: 20px;
		display: flex;
	}
	.product-content-images > .swiper.is-original > .wrapper > .circle {
		margin-right: 10px;
		transition: background-color 0.25s, opacity 0.25s;
	}
	.product-content-images > .swiper.is-original > .wrapper > .circle.swiper-button-disabled {
		opacity: 0.5 !important;
		pointer-events: none;
	}
	.product-content-images > .swiper.is-original > .wrapper > .circle > .sprite.is-gray-angle-prev {
		margin-left: -2px;
	}
	.product-content-images > .swiper.is-original > .wrapper > .circle > .sprite.is-gray-angle-next {
		margin-right: -2px;
	}
	.product-content-images > .swiper.is-original > .swiper-wrapper > .swiper-slide {
		position: relative;
	}
	.product-content-images > .swiper.is-original > .swiper-wrapper > .swiper-slide > .link {
		padding: 30px;
	}
	.product-content-images > .swiper.is-original > .swiper-wrapper > .swiper-slide > .cursor {
		position: absolute;
		top: 0;
		left: 0;
		z-index: 9;
		width: 50%;
		height: 50%;
		display: block;
		opacity: 0;
		box-shadow: 0 0 0 500px rgba(0, 0, 0, 0.5);
		transform: translate3d(0, 0, 0);
		backface-visibility: hidden;
		transition: opacity 0.25s;
		pointer-events: none;
		cursor: zoom-in;
	}
	.product-content-images > .swiper.is-original > .swiper-wrapper > .swiper-slide.is-zoomed > .cursor {
		opacity: 1;
	}
	.product-content-images > .swiper.is-clone {
		display: block;
		margin: 20px -5px 0 -25px;
		padding: 0 40px 0 20px;
		max-height: 900px;
	}
	.product-content-images > .swiper.is-clone::before, .product-content-images > .swiper.is-clone::after {
		z-index: 9;
	}
	.product-content-images > .swiper.is-clone::before {
		width: 25px;
		right: auto;
		background: linear-gradient(to right, white 5%, rgba(255, 255, 255, 0) 100%);
	}
	.product-content-images > .swiper.is-clone::after {
		left: auto;
		width: 50px;
		background: linear-gradient(to left, white 5%, rgba(255, 255, 255, 0) 100%);
	}
	.product-content-images > .swiper.is-clone > .swiper-wrapper > .swiper-slide {
		padding: 0 5px;
		cursor: pointer;
	}
	.product-content-images > .swiper.is-clone > .swiper-wrapper > .swiper-slide > .link {
		pointer-events: none;
		padding: 10px;
		height: 100%;
		border: 2px solid #f5f5f5;
		border-radius: 20px;
		background: #fff;
		cursor: pointer;
		transition: border-color 0.25s;
	}
	.product-content-images > .swiper.is-clone > .swiper-wrapper > .swiper-slide > .link > .img {
		height: 100%;
		border-radius: 10px;
	}
	.product-content-images > .swiper.is-clone > .swiper-wrapper > .swiper-slide.swiper-slide-thumb-active > .link {
		border-color: #c7c7c7;
	}
	.product-content-images > .swiper.is-clone > .layer {
		display: none;
	}
	.product-content-images-zoom {
		position: absolute;
		overflow: hidden;
		top: 0;
		left: calc(100% - 2px);
		bottom: 0;
		width: calc(100% - 140px);
		background: #fff;
		border-radius: 20px;
		pointer-events: none;
		opacity: 0;
		transition: opacity 0.25s;
		z-index: 9;
		border: none;
		box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.25);
	}
	.product-content-images-zoom.is-active {
		opacity: 1;
	}
	.product-content-images-zoom > .img {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		width: 200%;
		height: 200%;
		opacity: 0;
		transition: opacity 0.25s;
		padding: 20px;
		pointer-events: none;
	}
	.product-content-images-zoom > .img.is-active {
		opacity: 1;
	}
	.product-content-details {
		display: flex;
		align-self: stretch;
		flex-direction: column;
		align-items: flex-start;
		width: 50%;
		padding-left: 20px;
	}
	.product-content-details > .stars {
		display: flex;
		margin-bottom: 10px;
	}
	.product-content-details > .badge {
		margin-bottom: 15px;
	}
	.product-content-details > .price {
		margin-bottom: 10px;
	}
	.product-content-details > .wrapper {
		display: flex;
		flex-wrap: wrap;
		align-items: flex-start;
		padding-top: 20px;
		margin-top: 20px;
		margin-bottom: 20px;
		border-top: 1px solid #c7c7c7;
		position: absolute;
		margin-top: 114px;
	}
	.product-content-details > .wrapper > .button {
		margin: 0 10px 10px 0;
		border: 1px solid #c7c7c7;
		border-radius: 25px;
	}
	.product-content-details > .wrapper > .button:hover, .product-content-details > .wrapper > .button:active {
		border-color: #ff6600;
	}
	.product-content-details-share {
		height: 42px;
		border: 1px solid #c7c7c7;
		border-radius: 20px;
		overflow: hidden;
		transition: height 0.25s, border-color 0.25s, background-color 0.25s;
	}
	.product-content-details-share > .button {
		height: 40px;
		border: 0 !important;
		background: transparent !important;
	}
	.product-content-details-share > .list {
		align-items: center;
		justify-content: center;
		margin: -5px;
	}
	.product-content-details-share > .list > .list-item {
		padding: 5px;
	}
	.product-content-details-share > .list > .list-item > .link {
		padding: 2px;
		margin: -2px;
	}
	
	.product-content-details-share:hover, .product-content-details-share:active {
		height: 80px;
		background: #ff6600;
		border-color: #ff6600;
	}
	
	.product-content-details-share:hover *{
		color: #ffffff;
	}
	
	.product-content-details-share:hover > .button > .sprite, .product-content-details-share:active > .button > .sprite {
		filter: brightness(0%) invert(1);
	}
	.product-content-details-footer {
		margin-top: 165px;        
		padding: 10px 15px;
		background: #f4f4f4;
		color: #7f7f7f;
		font-size: 14px;
		border-radius: 20px;
	}
	
	.product-content-details-footer span::before {
		content: ''; 
		display: inline-block; 
		width: 6px; 
		height: 6px; 
		background-color: #7f7f7f; 
		border-radius: 50%;
		margin-right: 6px; 
		vertical-align: middle; 
	}
	
	.product-sections > .list {
		justify-content: center;
	}
	.product-sections > .list > .list-item {
		padding: 0 5px;
	}
	.product-sections > .list > .list-item > .link {
		background: #f4f4f4;
		font-size: 16px;
		font-weight: 700;
		line-height: 20px;
		color: #777777;
		padding: 5px 15px;
		border-radius: 20px;
		transition: color 0.25s, background-color 0.25s;
	}
	.product-sections > .list > .list-item > .link:hover, .product-sections > .list > .list-item > .link:active, .product-sections > .list > .list-item > .link.is-active {
		color: #fff;
		background-color: #111111;
	}
	.product-sections > .wrapper {
		position: relative;
		margin-top: 50px;
		transition: height 0.25s;
	}
	.product--section {
		position: absolute;
		top: 0;
		right: 0;
		left: 0;
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.25s;
	}
	.product--section .card > .title > .link::after {
		pointer-events: none;
	}
	.product--section.is-first {
		position: static;
		opacity: 1;
		pointer-events: auto;
	}
	.product--section.is-active {
		opacity: 1;
		pointer-events: auto;
	}
	.product--section.is-active .card > .title > .link::after {
		pointer-events: none;
	}
	.product--section-description {
		margin-bottom: 40px;
	}
	.product--section-description > .title {
		margin-bottom: 30px;
	}
	.product--section-related {
		display: block;
	}
	.product--section-related > .title {
		margin-bottom: 30px;
	}
	.product--section-related > .swiper {
		margin: -5px -50px;
		padding: 0 45px;
		width: calc(100% + 100px);
	}
	.product--section-related > .swiper::before, .product--section-related > .swiper::after {
		z-index: 9;
		width: 50px;
	}
	.product--section-related > .swiper::before {
		right: auto;
		background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
	}
	.product--section-related > .swiper::after {
		left: auto;
		background: linear-gradient(to left, white 0%, rgba(255, 255, 255, 0) 100%);
	}
	.product--section-related > .swiper > .swiper-wrapper > .swiper-slide {
		padding: 5px;
	}
	.product--section-tags {
		display: flex;
		align-items: center;
		margin-top: 60px;
	}
	.product--section-tags > .title {
		margin-right: 20px;
	}
	.product--section-tags > .list {
		margin: -5px;
	}
	.product--section-tags > .list > .list-item {
		padding: 5px;
	}
	.product--section-tags > .list > .list-item > .link {
		padding: 5px 10px;
		font-size: 14px;
		line-height: 20px;
		background: #d9d9d9;
		border-radius: 20px;
		transition: color 0.25s, background-color 0.25s;
		text-transform:lowercase;
	}
	.product--section-tags > .list > .list-item > .link:hover, .product--section-tags > .list > .list-item > .link:active {
		background-color: #c7c7c7;
	}
	.product--section-comments > .title {
		margin-bottom: 25px;
	}
	.product--section-comments > .title:first-child {
		margin-bottom: 15px;
	}
	.product--section-comments-form {
		margin-bottom: 25px;
	}
	.product--section-comments-form > .rating {
		margin-bottom: 25px;
	}
	.product--section-comments-form > .list {
		margin: -10px;
		align-items: center;
	}
	.product--section-comments-form > .list > .list-item {
		padding: 10px;
	}
	.product--section-comments-form > .list > .list-item > .text {
		cursor: pointer;
		color: #777777;
		font-weight: 700;
		margin-bottom: 15px;
	}
	.product--section-comments-form > .list > .list-item > .input {
		box-shadow: none;
	}
	.product--section-comments-form > .list > .list-item.no-1 {
		width: 100%;
	}
	.product--section-comments-form > .list > .list-item.no-2, .product--section-comments-form > .list > .list-item.no-3 {
		width: 50%;
	}
	.product--section-comments-form > .list > .list-item.no-4 {
		position: relative;
		margin-right: auto;
	}
	.product--section-comments-form > .list > .list-item.no-4 > .input {
		position: absolute;
		opacity: 0;
		pointer-events: none;
	}
	.product--section-comments-form > .list > .list-item.no-6 > .text {
		margin-bottom: 0;
		color: #c7c7c7;
		font-size: 14px;
		line-height: 20px;
		font-weight: 400;
	}
	.product--section-comments-wrapper {
		position: relative;
		overflow: hidden;
		height: 500px;
		padding-bottom: 100px;
	}
	.product--section-comments-wrapper > .list {
		margin: -10px;
	}
	.product--section-comments-wrapper > .list > .list-item {
		width: 50%;
		padding: 10px;
	}
	.product--section-comments-wrapper > .link {
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translate3d(-50%, 0, 0);
		z-index: 9;
		padding: 5px;
		margin: -5px;
		font-weight: 700;
		text-decoration: underline;
	}
	.product--section-comments-wrapper > .link::after {
		content: "Mostrar Menos";
	}
	.product--section-comments-wrapper::after {
		top: auto;
		height: 100px;
		background: linear-gradient(to top, white 25%, rgba(255, 255, 255, 0) 100%);
	}
	.product--section-comments-wrapper.is-short > .link::after {
		content: "Mostrar Mais";
	}
	.product--section-specs {
		color: #777777;
	}
	.product-labels {
		display: flex;
		position: absolute;
		top: 0;
		left: 0;
		writing-mode: vertical-lr;
		transform: rotate(180deg);
	}
	.product-labels > .text {
		padding: 10px 12px 10px 10px;
		margin: 5px 0;
		font-size: 18px;
		line-height: 20px;
		border-radius: 10px 0 0 10px;
		color: #fff;
		background: #ff6600;
	}
	.product-labels > .text.is-yellow {
		background: #ffc631;
	}
	.product-labels > .text.is-gray {
		background: #c7c7c7;
	}
}

@media (min-width: 1000px) {
	.product--section-comments > .list > .list-item {
		width: 50%;
	}
}

@media (min-width: 1200px) {
	.product-content-images {
		width: 52%;
		padding-left: 120px;
	}
	.product-content-images .img {
		object-fit: contain;
	}
	.product-content-images > .swiper.is-clone {
		position: absolute;
		top: -25px;
		left: 0;
		bottom: -5px;
		width: 100px;
		margin: 0;
		padding: 20px 0 40px;
	}
	.product-content-images > .swiper.is-clone::after, .product-content-images > .swiper.is-clone::before {
		width: 100%;
	}
	.product-content-images > .swiper.is-clone::before {
		right: 0;
		bottom: auto;
		height: 25px;
		background: linear-gradient(to bottom, white 25%, rgba(255, 255, 255, 0) 100%);
	}
	.product-content-images > .swiper.is-clone::after {
		left: 0;
		top: auto;
		height: 50px;
		background: linear-gradient(to top, white 25%, rgba(255, 255, 255, 0) 100%);
	}
	.product-content-images > .swiper.is-clone > .swiper-wrapper > .swiper-slide {
		padding: 5px 0;
	}
	.product-content-images > .swiper.is-clone > .swiper-wrapper > .swiper-slide > .img {
		height: 100%;
	}
	.product-content-details {
		width: 48%;
	}
	.product--section {
		display: flex;
		flex-wrap: wrap;
	}
	.product--section > * {
		width: 100%;
	}
	.product--section-description {
		width: 50%;
		padding-right: 100px;
	}
	.product--section-related {
		width: 50%;
	}
	.product--section-related > .swiper {
		padding: 0 90px 0 45px;
	}
	.product--section-tags {
		margin-top: 100px;
	}
}

@media (min-width: 1400px) {
	.product-content-images {
		width: 54%;
		padding-left: 140px;
	}
	.product-content-images > .swiper.is-clone {
		width: 120px;
	}
	.product-content-details {
		width: 46%;
	}
	.product--section-comments-form > .list > .list-item.no-1 {
		width: 50%;
	}
	.product--section-comments-form > .list > .list-item.no-2, .product--section-comments-form > .list > .list-item.no-3 {
		width: 25%;
	}
	.product--section-comments-form > .list > .list-item.no-5 {
		order: 6;
	}
	.product--section-comments-form > .list > .list-item.no-6 {
		order: 5;
	}
	.product--section-comments-wrapper > .list > .list-item {
		width: 33.33333%;
	}
}

.attention {
	padding: 0 20px;
}

.attention > .wrapper {
	padding: 15px 0 25px;
	border-top: 1px solid #c7c7c7;
}

.attention > .wrapper > .title {
	text-align: center;
	color: #c7c7c7;
	margin-bottom: 10px;
}

.attention > .wrapper > .list {
	margin: -5px;
}

.attention > .wrapper > .list > .list-item {
	width: 100%;
	padding: 5px;
}

.attention-item {
	padding: 10px 10px 10px 15px;
	border: 1px solid #c7c7c7;
	border-radius: 15px;
}

.attention-item > .sprite {
	margin-right: 10px;
}

.attention-item > .text {
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
}

h1.title.is-medium{line-height: 1.2 !important;}

@media (min-width: 400px) {
	.attention > .wrapper > .list > .list-item {
		width: 50%;
		min-height: 100%;
	}
	.attention-item {
		height: 100%;
	}
}

@media (min-width: 800px) {
	.attention {
		display: none;
	}
}

.tag-indisponivel {
    background-color: #b22222;
    color: white;
    text-align: center;
    padding: 6px 18px;
    border-radius: 25px;
    font-size: 13px;
    display: inline-block;
	font-weight: 500;
    letter-spacing: 1px;
	cursor: default;
	margin-bottom: -21px;
}

.mtag-indisponivel {
    background-color: #C7C7C7;
    color: white;
    text-align: center;
    padding: 4px 13px;
    border-radius: 25px;
    font-size: 12px;
    line-height: 15px;
    position: relative;
    top: -2px;
	margin-left: 3px;
}

/* Layout do detalhe: ações e frete seguem o fluxo e nunca se sobrepõem. */
@media (min-width: 800px) {
	.product-content-details {
		padding-left: 32px;
		align-items: stretch;
	}

	.product-content-details > .price {
		margin-bottom: 18px;
	}

	.product-content-details > #product-shipping {
		order: 2;
		width: 100%;
		max-width: none;
		margin: 0 0 18px;
	}

	.product-content-details > .wrapper {
		position: static;
		order: 3;
		display: flex;
		align-items: center;
		gap: 10px;
		width: 100%;
		padding: 0;
		margin: 0 0 18px;
		border-top: 0;
	}

	.product-content-details > .wrapper > .button {
		margin: 0;
	}

	.product-content-details > .wrapper .button.is-whatsapp {
		flex: 1 1 auto;
		justify-content: center;
		min-height: 44px;
	}

	.product-content-details > .wrapper .product-fav {
		flex: 0 0 auto;
		min-height: 44px;
	}

	.product-content-details-footer {
		order: 4;
		margin-top: auto;
	}
}

@media (max-width: 799px) {
	.product-content-details > .wrapper {
		display: flex;
		flex-wrap: wrap;
		gap: 10px;
		padding: 0;
		margin: 0 0 18px;
		border-top: 0;
	}

	.product-content-details > #product-shipping {
		margin: 0 0 16px;
	}

	.product-content-details > .wrapper .button.is-whatsapp {
		flex: 1 1 230px;
		width: auto;
		margin: 0;
	}

	.product-content-details > .wrapper .product-fav {
		flex: 1 1 120px;
		justify-content: center;
		margin: 0;
	}
}

@media (max-width: 420px) {
	.product-content-details > .wrapper .button.is-whatsapp,
	.product-content-details > .wrapper .product-fav {
		flex-basis: 100%;
		width: 100%;
	}
}

/* Tablets e janelas estreitas: uma coluna evita uma coluna de compra apertada. */
@media (min-width: 800px) and (max-width: 999px) {
	.product-content {
		display: block;
	}

	.product-content-images,
	.product-content-details {
		width: 100%;
		max-width: none;
	}

	.product-content-images {
		padding: 0;
	}

	.product-content-images > .swiper.is-original {
		max-width: 560px;
		margin: 0 auto;
	}

	.product-content-details {
		padding: 28px 0 0;
	}

	.product-content-details > #product-shipping {
		max-width: none;
	}
}

/* Tags (replica do bloco do site original atacadocollections.com) */
.product--section-tags[hidden] { display: none; }
.product--section-tags {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 28px;
}
.product--section-tags > .title {
	margin: 0 20px 0 0;
}
.product--section-tags > .list {
	margin: -5px;
	display: flex;
	flex-wrap: wrap;
}
.product--section-tags > .list > .list-item {
	padding: 5px;
}
.product--section-tags > .list > .list-item > .link {
	padding: 5px 12px;
	font-size: 14px;
	line-height: 20px;
	background: #d9d9d9;
	border-radius: 20px;
	color: #333;
	text-decoration: none;
	text-transform: lowercase;
	transition: color 0.25s, background-color 0.25s;
}
.product--section-tags > .list > .list-item > .link:hover,
.product--section-tags > .list > .list-item > .link:active {
	background-color: #c7c7c7;
}
@media (max-width: 640px) {
	.product--section-tags {
		margin-top: 20px;
	}
	.product--section-tags > .title {
		width: 100%;
		margin: 0 0 10px;
	}
}

/* ==========================================================================
   MODERN REDESIGN: PRODUTO.HTML (UI/UX 2026)
   ========================================================================== */

/* Breadcrumbs */
.breadcrumbs {
  padding: 14px 0;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 24px;
}
.breadcrumbs .list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
}
.breadcrumbs .list-item {
  display: inline-flex;
  align-items: center;
}
.breadcrumbs .list-item + .list-item::before {
  content: '/';
  margin-right: 8px;
  color: #94a3b8;
  font-weight: 400;
}
.breadcrumbs .link {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumbs .link:hover {
  color: #ff6600;
}
.breadcrumbs .text {
  color: #0f172a;
  font-weight: 600;
  max-width: 320px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Layout Principal Moderno */
.product {
  padding: 10px 0 60px;
}
.product-content {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 32px !important;
  align-items: start !important;
}
@media (min-width: 860px) {
  .product-content {
    grid-template-columns: 460px 1fr !important;
    gap: 48px !important;
  }
}
@media (min-width: 1100px) {
  .product-content {
    grid-template-columns: 500px 1fr !important;
    gap: 56px !important;
  }
}
.product-content-images,
.product-content-details {
  width: 100% !important;
  max-width: none !important;
  padding: 0 !important;
}
.product-content-details {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
}
.product-content-details > * {
  order: 0 !important;
}

/* Imagens nítidas sem filtros opacos */
#product.card-is-out-stock .product-image-container .img,
#product .product-image-container .img,
#product .img {
  filter: none !important;
  opacity: 1 !important;
}

/* Forçar ocultação de elementos com [hidden] */
.product-price-pix-tag[hidden],
#product-shipping[hidden],
#product-payment-panel[hidden] {
  display: none !important;
}

.product-price-value.is-sob-encomenda {
  font-size: 26px;
  font-weight: 800;
  color: #b91c1c;
}

/* Imagem & Hover Zoom */
.product-image-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 32px 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px -4px rgba(15, 23, 42, 0.05);
  cursor: zoom-in;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}
.product-image-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 12px 30px -6px rgba(15, 23, 42, 0.1);
}
.product-image-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #f1f5f9;
  color: #475569;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  z-index: 2;
}
.product-image-container {
  width: 100%;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 640px) {
  .product-image-container {
    height: 280px;
  }
}
.product-image-container .img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.product-image-card:hover .img {
  transform: scale(1.05);
}
.product-zoom-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(248, 250, 252, 0.9);
  border: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-top: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.product-zoom-hint:hover {
  background: #ffffff;
  color: #ff6600;
  border-color: #ffd0bd;
}

/* Meta Badges */
.product-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.product-meta-badge {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 8px;
  line-height: 1.2;
}
.product-meta-badge.is-line {
  background: #fff7ed;
  color: #c2410c;
  border: 1px solid #ffedd5;
}
.product-meta-badge.is-code {
  background: #f8fafc;
  color: #64748b;
  border: 1px solid #e2e8f0;
}
.product-meta-badge.is-stock {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}
.product-meta-badge.is-badge-encomenda {
  background: #fff7ed !important;
  color: #c2410c !important;
  border: 1px solid #fed7aa !important;
  font-weight: 700 !important;
}

/* Título */
.product-title {
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin: 0 0 16px 0;
  text-transform: none !important;
  letter-spacing: -0.3px;
}
@media (min-width: 768px) {
  .product-title {
    font-size: 28px;
  }
}

/* Preço em Destaque */
.product-price-section {
  background: linear-gradient(135deg, #fafafa 0%, #f4f5f7 100%);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 16px 20px;
  margin-bottom: 20px;
}
.product-price-main {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
}
.product-price-value {
  font-size: 32px;
  font-weight: 900;
  color: #0f172a;
  line-height: 1;
  letter-spacing: -0.5px;
}
.product-price-pix-tag {
  display: inline-flex;
  align-items: center;
  background: #ecfdf5;
  color: #059669;
  font-size: 13px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid #a7f3d0;
}
.product-price-sub {
  font-size: 13px;
  color: #64748b;
  margin-top: 6px;
  font-weight: 500;
}

/* Botões de Ação (WhatsApp + Favoritos) */
.product-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin: 20px 0 24px;
}
.product-buy-btn {
  flex: 1 1 auto;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 700;
  border-radius: 14px !important;
  border: none !important;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.3);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.product-buy-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.4);
  filter: brightness(1.03);
}
.product-buy-btn:active {
  transform: translateY(0);
}
.product-fav-btn {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  color: #94a3b8;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.product-fav-btn:hover {
  border-color: #fda4af;
  color: #f43f5e;
  background: #fff1f2;
}
.product-fav-btn.is-active {
  background: #fff1f2;
  border-color: #fecdd3;
  color: #ef4444;
}

/* Selos de Confiança */
.product-trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  margin-bottom: 24px;
}
@media (max-width: 540px) {
  .product-trust-badges {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.trust-icon {
  font-size: 22px;
  color: #ff6600;
  flex-shrink: 0;
}
.trust-badge-text {
  display: flex;
  flex-direction: column;
}
.trust-badge-text strong {
  font-size: 13px;
  color: #0f172a;
  font-weight: 700;
  line-height: 1.2;
}
.trust-badge-text span {
  font-size: 11px;
  color: #64748b;
  line-height: 1.2;
  margin-top: 2px;
}

/* Abas & Detalhes */
.product-sections {
  margin-top: 48px;
  border-top: 1px solid #e2e8f0;
  padding-top: 32px;
}
.product-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  list-style: none;
  padding: 0;
}
.product-tabs .link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 12px;
  background: #f1f5f9;
  color: #64748b;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.product-tabs .link:hover {
  background: #e2e8f0;
  color: #1e293b;
}
.product-tabs .link.is-active {
  background: #0f172a;
  color: #ffffff;
}

/* Produtos Relacionados */
.product-related-section {
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid #e2e8f0;
}
.related-header .title {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
}
.product-related-section .listing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) {
  .product-related-section .listing-cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

/* Mobile Sticky Bottom Bar */
.p-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid #e2e8f0;
  padding: 10px 16px;
  z-index: 990;
  box-shadow: 0 -4px 16px rgba(15, 23, 42, 0.08);
  transform: translateY(110%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: none;
}
@media (max-width: 859px) {
  .p-sticky-bar {
    display: block;
  }
  .p-sticky-bar.is-visible {
    transform: translateY(0);
  }
}
.p-sticky-bar-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.p-sticky-bar-info {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.p-sticky-bar-thumb {
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  flex-shrink: 0;
}
.p-sticky-bar-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.p-sticky-bar-title {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 160px;
}
.p-sticky-bar-price {
  font-size: 14px;
  font-weight: 800;
  color: #ff6600;
}
.p-sticky-bar-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 12px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(22, 163, 74, 0.3);
  flex-shrink: 0;
}

/* Lightbox Modal */
.p-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.p-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.p-lightbox[hidden] {
  display: none;
}
.p-lightbox-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.p-lightbox-dialog {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2001;
  transform: scale(0.95);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.p-lightbox.is-open .p-lightbox-dialog {
  transform: scale(1);
}
.p-lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: #f1f5f9;
  border: none;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.p-lightbox-close:hover {
  background: #fee2e2;
  color: #ef4444;
}
.p-lightbox-img {
  max-width: 80vw;
  max-height: 75vh;
  object-fit: contain;
}
.p-lightbox-caption {
  font-size: 14px;
  font-weight: 600;
  color: #475569;
  margin-top: 12px;
  text-align: center;
}
body.is-lightbox {
  overflow: hidden;
}

