body {
	margin: 0;
	padding: 0;
	min-height: 100vh;
}

#root {
	min-height: 100vh;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary-color: #fe2c55;
	--secondary-color: #00f2ea;
	--text-primary: #1a1a1a;
	--text-secondary: #8a8a8a;
	--border-color: #e1e1e1;
	--bg-gray: #fafafa;
	--success-color: #00c853;
	--warning-color: #ff9800;
	--star-color: #ffb800;
}

body {
	font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background: #fafafa;
	color: var(--text-primary);
	font-weight: 400;
}

.App {
	max-width: 100%;
	margin: 0 auto;
}

.product-page {
	padding-bottom: 80px;
	margin-top: 0;
}

.product-tabs {
	display: flex;
	gap: 24px;
	padding: 10px;
	background: #fff;
	border-bottom: 1px solid var(--border-color);
	position: sticky;
	top: 0;
	z-index: 100;
	overflow-x: auto;
}

.tab-btn {
	position: relative;
	background: none;
	border: none;
	font-size: 12px;
	font-weight: 500;
	color: var(--text-secondary);
	cursor: pointer;
	white-space: nowrap;
	transition: color .3s;
}

.tab-btn.active {
	color: var(--text-primary);
	font-weight: 600;
}

.tab-indicator {
	position: absolute;
	bottom: -16px;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--text-primary);
}

.product-container {
	padding: 0;
	background: #fafafa;
}

.product-badge {
	background: linear-gradient(135deg, #ff6b6b, #ff8e53);
	color: #fff;
	padding: 6px 16px;
	border-radius: 0 0 8px;
	font-size: 12px;
	font-weight: 600;
	display: inline-block;
	margin-bottom: 0;
}

.image-gallery {
	width: 100%;
}

.gallery-main {
	position: relative;
	width: 100%;
	height: 400px;
	background: #fff;
	overflow: hidden;
}

.gallery-images {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.image-container {
	display: flex;
	height: 100%;
	transition: transform .3s ease-in-out;
}

.product-image {
	min-width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 10px;
}

.gallery-nav {
	position: absolute;
	top: 50%;
	transform: translatey(-50%);
	background: #ffffffe6;
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background .3s;
	z-index: 10;
}

.gallery-nav:hover {
	background: #fff;
}

.gallery-nav.prev {
	left: 16px;
}

.gallery-nav.next {
	right: 16px;
}

.gallery-thumbnails {
	display: flex;
	justify-content: center;
	gap: 8px;
	padding: 0 20px;
}

.thumbnail {
	background: none;
	border: none;
	padding: 4px;
	cursor: pointer;
}

.thumbnail-indicator {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #d1d1d1;
	transition: all .3s;
}

.thumbnail-indicator.active {
	width: 24px;
	border-radius: 4px;
	background: var(--text-primary);
}

.price-section {
	background: linear-gradient(90deg, #ff2c55 -5.42%, #ff712c 108.47%);
	padding: 12px 16px;
	box-shadow: 0 1px 2px #0000000d;
	width: 100%;
	margin-bottom: 16px;
	position: relative;
	overflow: hidden;
}

.price-section-bg-svg {
	position: absolute;
	top: 0;
	right: -30px;
	bottom: 0;
	width: 150px;
	height: 100%;
	pointer-events: none;
	z-index: 1;
	opacity: .6;
}

.price-section-bg-svg svg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.2);
}

.price-section-content {
	position: relative;
	z-index: 2;
}

.price-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 8px;
}

.price-left {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.discount-badge-new {
	background: #fff;
	color: #fe2c55;
	padding: 6px 10px;
	border-radius: 5px;
	font-size: 10px;
	font-weight: 700;
	line-height: 1;
	align-self: flex-start;
}

.price-info-new {
	display: flex;
	align-items: center;
	gap: 2px;
}

.price-label-new {
	font-size: 11px;
	color: #fff;
	opacity: .9;
	font-weight: 400;
	line-height: 1;
}

.price-amount-wrapper {
	display: flex;
	align-items: baseline;
	gap: 4px;
}

.currency-new {
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	line-height: 1;
}

.amount-new {
	font-size: 19px;
	font-weight: 700;
	color: #fff;
	line-height: 1;
}

.flash-sale-badge-new {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: #ffffff40;
	color: #fff;
	padding: 4px 10px;
	border-radius: 12px;
	font-size: 10px;
	font-weight: 600;
	white-space: nowrap;
}

.flash-sale-badge-new svg {
	flex-shrink: 0;
}

.price-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding-top: 4px;
}

.original-price-new {
	font-size: 13px;
	color: #fff;
	text-decoration: line-through;
	opacity: .8;
	line-height: 1;
}

.flash-sale-ends-new {
	font-size: 11px;
	color: #fff;
	opacity: .9;
	line-height: 1;
}

.discount-badge {
	background: var(--primary-color);
	color: #fff;
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 18px;
	font-weight: 700;
}

.price-main {
	flex: 1;
}

.price-label {
	font-size: 13px;
	color: var(--text-secondary);
	display: block;
	margin-bottom: 4px;
}

.price-value {
	display: flex;
	align-items: baseline;
	gap: 4px;
}

.currency {
	font-size: 20px;
	font-weight: 600;
	color: var(--primary-color);
}

.amount {
	font-size: 32px;
	font-weight: 700;
	color: var(--primary-color);
}

.flash-sale-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: linear-gradient(135deg, #ff6b6b, #ff8e53);
	color: #fff;
	padding: 6px 12px;
	border-radius: 16px;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 8px;
}

.price-original {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 8px;
}

.original-price {
	font-size: 15px;
	color: var(--text-secondary);
	text-decoration: line-through;
}

.flash-sale-ends {
	font-size: 13px;
	color: var(--text-secondary);
}

.product-info {
	padding: 0 20px;
}

.product-title {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 12px;
	color: var(--text-primary);
}

.product-stats {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
	font-size: 14px;
}

.rating-wrapper {
	display: flex;
	align-items: center;
	gap: 4px;
}

.rating-score {
	font-weight: 600;
}

.review-count,
.sold-count {
	color: var(--text-secondary);
	font-size: .875rem;
}

.separator {
	color: var(--text-secondary);
}

.shipping-info {
	width: 100%;
	background: transparent;
	border: none;
	border-radius: 8px;
	align-items: flex-start;
	gap: 12px;
	cursor: pointer;
	transition: background .3s;
	text-align: left;
}

.shipping-truck-icon {
	width: 24px;
	height: 24px;
	color: #6b7280;
	margin-top: 2px;
	flex-shrink: 0;
}

.shipping-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.shipping-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}

.shipping-info-left {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.shipping-badge-free {
	background: #d1fae5;
	color: #059669;
	font-weight: 600;
	font-size: 12px;
	padding: 2px 6px;
	border-radius: 4px;
	line-height: 1.4;
}

.shipping-date {
	font-size: 14px;
	color: #1a1a1a;
	line-height: 1.4;
}

.shipping-chevron {
	width: 20px;
	height: 20px;
	color: #9ca3af;
	flex-shrink: 0;
}

.shipping-cost {
	font-size: 14px;
	color: #6b7280;
	line-height: 1.4;
}

.shipping-cost-value {
	text-decoration: line-through;
}

.variants-selector {
	width: 100%;
	padding: 12px;
	background: transparent;
	border: none;
	border-radius: 8px;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	cursor: pointer;
	transition: background .3s;
	text-align: left;
}

.variants-selector:hover {
	background: #f9fafb;
}

.variants-preview {
	display: flex;
	align-items: center;
	gap: 8px;
	flex: 1;
}

.variants-preview svg {
	width: 24px;
	height: 24px;
	color: #6b7280;
	flex-shrink: 0;
}

.variants-images {
	display: flex;
	gap: 4px;
}

.variants-images img {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	object-fit: cover;
	border: 1px solid var(--border-color);
}

.variants-text {
	font-size: 14px;
	color: #1a1a1a;
	flex: 1;
}

.variants-chevron {
	width: 20px;
	height: 20px;
	color: #9ca3af;
	flex-shrink: 0;
}

.variant-modal-overlay {
  position: fixed;
  inset: 0;
  background: #00000080;
  z-index: 2000;
  will-change: opacity;
  opacity: 0;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  pointer-events: none; /* impede clique quando invisível */
}

.variant-modal-overlay.open {
  pointer-events: auto; /* permite clique */
  animation: fadeIn .35s cubic-bezier(.16, 1, .3, 1) forwards;
}

.variant-modal-overlay.closing {
  animation: fadeOut .35s cubic-bezier(.7, 0, .84, 0) forwards;
}


.variant-modal {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	max-height: 90vh;
	width: 100%;
	background: #fff;
	border-radius: 16px 16px 0 0;
	z-index: 2001;
	display: flex;
	flex-direction: column;
	opacity: 0;
	transform: translatey(100%);
	transition: all .3s ease-out;
}

@media (max-width: 767px) {
	.variant-modal {
		bottom: env(safe-area-inset-bottom, 0);
		max-height: calc(90vh - env(safe-area-inset-bottom, 0));
	}
}

.variant-modal.open {
	opacity: 1;
	transform: translatey(0);
}

.variant-modal.closing {
	opacity: 0;
	transform: translatey(100%);
}

@media (min-width: 800px) {
	.variant-modal {
		border-radius: 16px;
		bottom: 16px;
		left: 50%;
		right: auto;
		width: min(100%, 768px);
		margin: 0;
		transform: translate(-50%) translatey(100%) translatez(0);
	}

	.variant-modal.open {
		animation: slideUpDesktop .4s cubic-bezier(.16, 1, .3, 1) forwards;
	}

	.variant-modal.closing {
		animation: slideDownDesktop .35s cubic-bezier(.7, 0, .84, 0) forwards;
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
		backdrop-filter: blur(0px);
		-webkit-backdrop-filter: blur(0px);
	}

	to {
		opacity: 1;
		backdrop-filter: blur(2px);
		-webkit-backdrop-filter: blur(2px);
	}
}

@keyframes fadeOut {
	0% {
		opacity: 1;
		backdrop-filter: blur(2px);
		-webkit-backdrop-filter: blur(2px);
	}

	to {
		opacity: 0;
		backdrop-filter: blur(0px);
		-webkit-backdrop-filter: blur(0px);
	}
}

@keyframes slideUp {
	0% {
		opacity: 0;
		transform: translatey(100%) translatez(0) scale(.95);
	}

	to {
		opacity: 1;
		transform: translatey(0) translatez(0) scale(1);
	}
}

@keyframes slideDown {
	0% {
		opacity: 1;
		transform: translatey(0) translatez(0) scale(1);
	}

	to {
		opacity: 0;
		transform: translatey(100%) translatez(0) scale(.95);
	}
}

@keyframes slideUpDesktop {
	0% {
		opacity: 0;
		transform: translate(-50%) translatey(100%) translatez(0) scale(.95);
	}

	to {
		opacity: 1;
		transform: translate(-50%) translatey(0) translatez(0) scale(1);
	}
}

@keyframes slideDownDesktop {
	0% {
		opacity: 1;
		transform: translate(-50%) translatey(0) translatez(0) scale(1);
	}

	to {
		opacity: 0;
		transform: translate(-50%) translatey(100%) translatez(0) scale(.95);
	}
}

@keyframes slideInContent {
	0% {
		opacity: 0;
		transform: translatey(10px);
	}

	to {
		opacity: 1;
		transform: translatey(0);
	}
}

.variant-modal-header {
	padding: 16px 20px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	border-bottom: 1px solid var(--border-color);
	gap: 16px;
	opacity: 0;
	transform: translatey(-10px);
}

.variant-modal.open .variant-modal-header {
	animation: slideInContent .4s cubic-bezier(.16, 1, .3, 1) .1s forwards;
}

.variant-modal.open .variant-modal-content {
	animation: slideInContent .4s cubic-bezier(.16, 1, .3, 1) .15s forwards;
}

.variant-modal.open .variant-modal-footer {
	animation: slideInContent .4s cubic-bezier(.16, 1, .3, 1) .2s forwards;
}

.variant-modal-header-product {
	display: flex;
	gap: 16px;
	flex: 1;
}

.variant-modal-header-image {
	width: 80px;
	height: 80px;
	border-radius: 8px;
	border: 1px solid var(--border-color);
	object-fit: cover;
	flex-shrink: 0;
}

@media (min-width: 480px) {
	.variant-modal-header-image {
		width: 100px;
		height: 100px;
	}
}

.variant-modal-header-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
}

.variant-modal-header-price {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary-color);
	line-height: 1;
}

@media (min-width: 480px) {
	.variant-modal-header-price {
		font-size: 32px;
	}
}

.variant-modal-header-original {
	font-size: .75rem;
	color: #6b7280;
	text-decoration: line-through;
	line-height: 1.4;
}

.variant-modal-header-stock {
	font-size: .75rem;
	color: #6b7280;
	line-height: 1.4;
}

.variant-modal-close {
	background: none;
	border: none;
	padding: 8px;
	cursor: pointer;
	color: #6b7280;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color .3s;
	flex-shrink: 0;
}

.variant-modal-close:hover {
	color: #1a1a1a;
}

.variant-modal-content {
	flex: 1;
	overflow-y: auto;
	padding: 20px;
	max-height: calc(90vh - 280px);
	contain: layout;
	opacity: 0;
	transform: translatey(10px);
}

.variant-selector-section {
	margin-bottom: 24px;
}

.variant-selector-section:first-child {
	margin-top: 0;
}

.variant-section-title {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 12px;
	color: #1a1a1a;
}

.variant-options {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
	gap: 12px;
	margin-bottom: 12px;
}

.variant-option {
	aspect-ratio: 1;
	border: 2px solid var(--border-color);
	border-radius: 8px;
	padding: 4px;
	cursor: pointer;
	background: #fff;
	transition: border-color .2s, box-shadow .2s;
}

.variant-option:hover {
	border-color: #9ca3af;
}

.variant-option.selected {
	border-color: var(--primary-color);
	box-shadow: 0 0 0 1px var(--primary-color);
}

.variant-option img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 4px;
}

.variant-info-text {
	font-size: 14px;
	color: #6b7280;
	margin: 0;
}

.model-options {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.model-option {
	width: 100%;
	padding: 16px;
	border: 2px solid var(--border-color);
	border-radius: 8px;
	background: #fff;
	cursor: pointer;
	transition: border-color .2s, background .2s;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-align: left;
}

.model-option:hover {
	border-color: #9ca3af;
}

.model-option.selected {
	border-color: var(--primary-color);
	background: #fff5f5;
}

.model-name {
	font-size: 16px;
	font-weight: 500;
	color: #1a1a1a;
}

.model-price {
	font-size: 16px;
	font-weight: 700;
	color: var(--primary-color);
}

.variant-quantity-section {
	padding-top: 24px;
	border-top: 1px solid var(--border-color);
}

.quantity-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	margin-top: 16px;
}

.quantity-total {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.quantity-total-label {
	font-size: .75rem;
	color: #6b7280;
	margin-bottom: 4px;
}

.quantity-total-value {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--primary-color);
	line-height: 1;
}

.variant-quantity-controls {
	display: flex;
	align-items: center;
	gap: 5px;
}

.variant-quantity-btn {
	width: 24px;
	height: 24px;
	border: 1px solid var(--border-color);
	background: #fff;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background .2s, border-color .2s;
}

.variant-quantity-btn:hover:not(:disabled) {
	background: var(--bg-gray);
	border-color: var(--text-primary);
}

.variant-quantity-btn:disabled {
	opacity: .3;
	cursor: not-allowed;
}

.variant-quantity-value {
	font-size: 1.125rem;
	font-weight: 400;
	min-width: 60px;
	text-align: center;
}

.variant-modal-footer {
	padding: 16px 20px;
	border-top: 1px solid var(--border-color);
	display: flex;
	flex-direction: column;
	gap: 12px;
	background: #fff;
	opacity: 0;
	transform: translatey(10px);
}

.variant-modal-btn {
	width: 100%;
	padding: 16px;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all .3s;
	white-space: nowrap;
}

.variant-modal-btn.add-cart {
	background: #fff;
	border: 2px solid var(--primary-color);
	color: var(--primary-color);
}

.variant-modal-btn.add-cart:hover {
	background: #fff5f5;
}

.variant-modal-btn.buy-now {
	background: var(--primary-color);
	color: #fff;
}

.variant-modal-btn.buy-now:hover {
	opacity: .9;
}

.share-modal-overlay {
	position: fixed;
	inset: 0;
	background: #00000080;
	z-index: 1000;
	animation: fadeIn .2s ease-in;
}

.share-modal {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	max-width: 400px;
	background: linear-gradient(135deg, #667eea, #764ba2);
	border-radius: 24px;
	padding: 32px 24px;
	z-index: 1001;
	animation: slideUp .3s ease-out;
	box-shadow: 0 20px 60px #0000004d;
}

.share-modal-header {
	text-align: center;
	margin-bottom: 24px;
}

.share-modal-title {
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 8px;
}

.share-modal-subtitle {
	font-size: 14px;
	color: #ffffffe6;
}

.share-modal-content {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin-bottom: 20px;
}

.share-option {
	background: #ffffff26;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: 16px;
	padding: 20px 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	transition: all .3s;
}

.share-option:hover {
	background: #ffffff40;
	transform: translatey(-2px);
	box-shadow: 0 8px 16px #0003;
}

.share-option-icon {
	width: 48px;
	height: 48px;
	background: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.share-whatsapp .share-option-icon {
	background: #25d366;
}

.share-whatsapp .share-option-icon svg {
	stroke: #fff;
}

.share-facebook .share-option-icon {
	background: #1877f2;
}

.share-facebook .share-option-icon svg {
	stroke: #fff;
}

.share-twitter .share-option-icon {
	background: #1da1f2;
}

.share-twitter .share-option-icon svg {
	stroke: #fff;
}

.share-telegram .share-option-icon {
	background: #08c;
}

.share-telegram .share-option-icon svg {
	stroke: #fff;
}

.share-option-label {
	font-size: 14px;
	font-weight: 600;
	color: #fff;
}

.share-copy-btn {
	width: 100%;
	background: #ffffff40;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, .3);
	border-radius: 12px;
	padding: 14px;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all .3s;
	margin-bottom: 16px;
}

.share-copy-btn:hover {
	background: #ffffff59;
	transform: translatey(-1px);
}

.share-modal-footer {
	text-align: center;
}

.share-modal-footer-text {
	font-size: 13px;
	color: #ffffffd9;
	line-height: 1.5;
}

.share-modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	background: #fff3;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	border: none;
	border-radius: 50%;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all .3s;
}

.share-modal-close:hover {
	background: #ffffff4d;
	transform: rotate(90deg);
}

.share-modal-close svg {
	stroke: #fff;
}

@keyframes slideUp {
	0% {
		opacity: 0;
		transform: translate(-50%, -40%);
	}

	to {
		opacity: 1;
		transform: translate(-50%, -50%);
	}
}

.store-modal-overlay {
	position: fixed;
	inset: 0;
	background: #00000080;
	z-index: 1000;
	animation: fadeIn .2s ease-in;
}

.store-modal {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	max-width: 448px;
	background: #fff;
	border-radius: 12px;
	padding: 24px;
	z-index: 1001;
	animation: slideUp .3s ease-out;
	box-shadow: 0 10px 40px #0003;
}

.store-modal-header {
	margin-bottom: 24px;
}

.store-modal-title {
	font-size: 18px;
	font-weight: 700;
	color: #111827;
	margin: 0;
}

.store-modal-content {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.store-header-section {
	display: flex;
	align-items: center;
	gap: 12px;
}

.store-header-logo {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
	background: #fff;
	padding: 2px;
}

.store-header-info {
	flex: 1;
	min-width: 0;
}

.store-header-name {
	font-size: 16px;
	font-weight: 700;
	color: #111827;
	margin: 0 0 4px;
}

.store-header-rating {
	display: flex;
	align-items: center;
	gap: 4px;
}

.store-rating-score {
	font-size: 14px;
	font-weight: 600;
	color: #111827;
}

.store-rating-star {
	width: 16px;
	height: 16px;
}

.store-rating-count {
	font-size: 12px;
	color: #6b7280;
}

.store-details-section {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.store-detail-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.store-detail-icon {
	width: 20px;
	height: 20px;
	color: #6b7280;
	flex-shrink: 0;
	margin-top: 2px;
}

.store-detail-label {
	font-size: 14px;
	font-weight: 600;
	color: #111827;
	margin-bottom: 2px;
}

.store-detail-value {
	font-size: 14px;
	color: #6b7280;
}

.store-about-section {
	padding-top: 16px;
	border-top: 1px solid #e5e7eb;
}

.store-about-title {
	font-size: 14px;
	font-weight: 600;
	color: #111827;
	margin: 0 0 8px;
}

.store-about-text {
	font-size: 14px;
	color: #6b7280;
	line-height: 1.5;
	margin: 0;
}

.store-modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	background: none;
	border: none;
	border-radius: 4px;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all .2s;
	color: #6b7280;
}

.store-modal-close:hover {
	background: #f3f4f6;
	color: #111827;
}

.chat-modal-overlay {
	position: fixed;
	inset: 0;
	background: #00000080;
	z-index: 1000;
	animation: fadeIn .2s ease-in;
}

.chat-modal {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	max-width: 448px;
	background: #fff;
	border-radius: 12px;
	padding: 0;
	z-index: 1001;
	animation: slideUpChat .3s ease-out;
	box-shadow: 0 10px 40px #0003;
	overflow: hidden;
}

@keyframes slideUpChat {
	0% {
		opacity: 0;
		transform: translate(-50%, -40%) scale(.95);
	}

	to {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1);
	}
}

.chat-modal-header {
	padding: 10px 12px;
	border-bottom: 1px solid #e5e7eb;
	background: #fff;
}

.chat-header-info {
	display: flex;
	align-items: center;
	gap: 10px;
}

.chat-header-logo {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
	background: #fff;
	padding: 1px;
}

.chat-header-title {
	font-size: 14px;
	font-weight: 700;
	color: #111827;
	margin: 0;
}

.chat-header-status {
	font-size: 10px;
	color: #059669;
	margin: 0;
}

.chat-modal-body {
	display: flex;
	flex-direction: column;
	height: 400px;
}

.chat-messages {
	flex: 1;
	overflow-y: auto;
	padding: 12px;
	background: #f9fafb;
}

.chat-message {
	display: flex;
	gap: 8px;
	justify-content: flex-start;
	animation: fadeInMessage .2s ease-out;
}

@keyframes fadeInMessage {
	0% {
		opacity: 0;
		transform: translatey(8px);
	}

	to {
		opacity: 1;
		transform: translatey(0);
	}
}

.chat-message-avatar {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
	background: #fff;
	padding: 1px;
}

.chat-message-bubble {
	max-width: 80%;
	border-radius: 4px 16px 16px;
	padding: 12px;
	background: #fff;
}

.chat-message-text {
	font-size: 12px;
	color: #111827;
	line-height: 1.5;
	margin: 0;
}

.chat-questions {
	border-top: 1px solid #e5e7eb;
	background: #fff;
	padding: 12px;
}

.chat-questions-label {
	font-size: 10px;
	color: #6b7280;
	margin: 0 0 8px;
}

.chat-questions-list {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.chat-question-btn {
	width: 100%;
	text-align: left;
	padding: 8px 12px;
	font-size: 12px;
	color: #111827;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	background: #fff;
	cursor: pointer;
	transition: all .2s;
}

.chat-question-btn:hover {
	background: #f9fafb;
	border-color: #d1d5db;
}

.chat-modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	background: none;
	border: none;
	border-radius: 4px;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all .2s;
	color: #6b7280;
	z-index: 10;
}

.chat-modal-close:hover {
	background: #0000000d;
	color: #111827;
}

.tiktok-services {
	width: 100%;
	background: #fffbeb;
	border-radius: 8px;
	padding: 16px;
	text-align: left;
	border: none;
	cursor: pointer;
	transition: background-color .3s ease;
	margin-bottom: 16px;
}

.tiktok-services:hover {
	background: #f5edd8cc;
}

.tiktok-services-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}

.tiktok-services-header-left {
	display: flex;
	align-items: center;
	gap: 8px;
}

.tiktok-services-shield {
	height: 20px;
	width: 20px;
	color: #ff9800;
	flex-shrink: 0;
}

.tiktok-services-title {
	font-weight: 600;
	font-size: 15px;
	color: #8b6914;
	margin: 0;
}

.tiktok-services-chevron {
	height: 20px;
	width: 20px;
	color: #8b6914;
	flex-shrink: 0;
}

.tiktok-services-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;
}

.tiktok-service-item {
	display: flex;
	align-items: flex-start;
	gap: 6px;
}

.tiktok-service-check {
	height: 16px;
	width: 16px;
	color: #8b6914;
	margin-top: 2px;
	flex-shrink: 0;
}

.tiktok-service-text {
	font-size: 14px;
	color: #8b6914;
	line-height: 1.4;
}

.reviews-section {
	padding: 20px;
	background: #fff;
	margin-bottom: 8px;
}

.reviews-section h2 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 16px;
}

.review-filters {
	display: flex;
	gap: 8px;
	margin-bottom: 16px;
	overflow-x: auto;
	padding-bottom: 8px;
}

.filter-btn {
	padding: 8px 16px;
	background: #fff;
	border: 1px solid var(--border-color);
	border-radius: 20px;
	font-size: 13px;
	white-space: nowrap;
	cursor: pointer;
	transition: all .3s;
	display: flex;
	align-items: center;
	gap: 4px;
}

.filter-btn:hover {
	background: var(--bg-gray);
}

.filter-btn.active {
	background: var(--text-primary);
	color: #fff;
	border-color: var(--text-primary);
}

.reviews-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.review-card {
	background: #fafafa;
	padding: 16px;
	border-radius: 8px;
}

.review-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 8px;
}

.review-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
}

.review-info {
	flex: 1;
}

.review-name {
	font-weight: 600;
	font-size: 15px;
	margin-bottom: 4px;
}

.star-rating {
	display: flex;
	gap: 2px;
}

.review-location {
	font-size: 13px;
	color: var(--text-secondary);
	margin-bottom: 12px;
}

.review-comment {
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 12px;
}

.review-images {
	display: flex;
	gap: 8px;
}

.review-image {
	width: 80px;
	height: 80px;
	border-radius: 8px;
	object-fit: cover;
}

.store-info {
	padding: 20px;
	background: #fff;
	margin-bottom: 8px;
}

.store-info h2 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 16px;
}

.store-card {
	background: #fafafa;
	padding: 16px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.store-logo {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
}

.store-details {
	flex: 1;
}

.store-name {
	font-weight: 600;
	font-size: 16px;
	margin-bottom: 4px;
}

.store-products {
	font-size: 13px;
	color: var(--text-secondary);
}

.follow-btn {
	padding: 8px 24px;
	background: var(--primary-color);
	color: #fff;
	border: none;
	border-radius: 20px;
	font-weight: 600;
	cursor: pointer;
	transition: opacity .3s;
}

.follow-btn:hover {
	opacity: .9;
}

.product-description {
	padding: 20px;
	background: #fff;
	margin-bottom: 8px;
}

.product-description h2 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 16px;
}

.description-intro {
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 24px;
	color: var(--text-secondary);
}

.description-sections {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-bottom: 24px;
}

.description-section h3 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 12px;
}

.description-section p {
	font-size: 14px;
	line-height: 1.6;
	color: var(--text-secondary);
}

.description-contents {
	margin-bottom: 24px;
}

.description-contents h3 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 12px;
}

.description-contents ul {
	list-style-position: inside;
	padding-left: 0;
}

.description-contents li {
	font-size: 14px;
	line-height: 1.8;
	color: var(--text-secondary);
}

.description-disclaimer {
	font-size: 14px;
	line-height: 1.6;
	color: var(--text-secondary);
	margin-bottom: 24px;
}

.description-legal h3 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 12px;
}

.description-legal p {
	font-size: 14px;
	line-height: 1.6;
	color: var(--text-secondary);
}

.related-products {
	padding: 20px;
	background: #fff;
	margin-bottom: 8px;
}

.related-products h2 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 16px;
}

.related-products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 12px;
}

.product-card {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	transition: transform .3s;
	cursor: pointer;
}

.product-card:hover {
	transform: translatey(-4px);
}

.product-card-image {
	position: relative;
	width: 100%;
	padding-top: 100%;
	background: #fff;
	overflow: hidden;
}

.product-card-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-card-actions {
	position: absolute;
	top: 8px;
	right: 8px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	opacity: 0;
	transition: opacity .3s;
}

.product-card:hover .product-card-actions {
	opacity: 1;
}

.product-action-btn {
	width: 32px;
	height: 32px;
	background: #ffffffe6;
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background .3s;
}

.product-action-btn:hover {
	background: #fff;
}

.product-card-content {
	padding: 12px;
}

.product-card-title {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	margin-bottom: 8px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.product-card-price {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 8px;
}

.price-row {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.current-price {
	font-size: 16px;
	font-weight: 700;
	color: var(--primary-color);
}

.product-card .original-price {
	font-size: 12px;
	text-decoration: line-through;
}

.discount-tag {
	background: #ffe8e8;
	color: var(--primary-color);
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 11px;
	font-weight: 600;
}

.product-card-stats {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	color: var(--text-secondary);
}

.rating {
	display: flex;
	align-items: center;
	gap: 4px;
}

.footer-links {
	padding: 24px 20px;
	background: #fff;
	border-top: 1px solid #e5e7eb;
	margin-bottom: 8px;
}

.footer-link-item {
	border-bottom: 1px solid #e5e7eb;
}

.footer-link-btn {
	width: 100%;
	padding: 16px 0;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footer-link-title {
	font-weight: 600;
	font-size: 14px;
	color: #1a1a1a;
}

.footer-link-chevron {
	width: 20px;
	height: 20px;
	color: #4b5563;
	transition: transform .3s ease;
	flex-shrink: 0;
}

.footer-link-chevron.open {
	transform: rotate(180deg);
}

.footer-link-content {
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition: all .5s ease-in-out;
}

.footer-link-content.open {
	max-height: 200px;
	opacity: 1;
	padding-bottom: 16px;
}

.footer-link-desc {
	font-size: 14px;
	line-height: 1.5;
	color: #4b5563;
	margin: 0;
}

.action-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #fff;
	border-top: 1px solid var(--border-color);
	padding: 12px 16px;
	display: flex;
	gap: 8px;
	z-index: 1000;
	box-shadow: 0 -2px 10px #0000001a;
}

.action-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border: none;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	transition: all .3s;
	gap: 4px;
}

.action-btn.secondary {
	background: #fff;
	color: var(--text-primary);
	flex: 0 0 auto;
}

.action-btn.secondary:hover {
	background: var(--bg-gray);
}

.action-btn-text {
	font-size: 10px;
	margin-top: 4px;
}

.action-btn.add-cart {
	background: #fff;
	border: 2px solid var(--primary-color);
	color: var(--primary-color);
	padding: 5px;
	flex: 1;
}

.action-btn.add-cart:hover {
	background: #fff5f5;
}

.action-btn.buy-now {
	background: var(--primary-color);
	color: #fff;
	padding: 5px;
	flex: 1;
}

.action-btn.buy-now:hover {
	opacity: .9;
}

.btn-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
}

.btn-label {
	font-size: 14px;
	font-weight: 600;
}

.btn-sublabel {
	font-size: 11px;
	opacity: .8;
}

.cart-notification {
	position: fixed;
	top: 20px;
	left: 50%;
	transform: translate(-50%);
	background: var(--success-color);
	color: #fff;
	padding: 12px 24px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	z-index: 1001;
	animation: slideDown .3s ease-out;
}

@keyframes slideDown {
	0% {
		transform: translate(-50%) translatey(-100%);
		opacity: 0;
	}

	to {
		transform: translate(-50%) translatey(0);
		opacity: 1;
	}
}

@media (min-width: 768px) {
	.App {
		max-width: 768px;
	}

	.product-tabs {
		padding: 16px 32px;
	}

	.product-container {
		padding: 0 0 24px;
	}

	.product-info {
		padding: 0 32px;
	}

	.gallery-main {
		height: 500px;
	}

	.related-products-grid {
		grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
		gap: 16px;
	}

	.product-title {
		font-size: 20px;
	}

	.reviews-section,
	.store-info,
	.product-description,
	.related-products {
		padding: 24px 32px;
	}

	.footer-links {
		padding: 0 32px 24px;
	}

	.action-bar {
		padding: 16px 32px;
	}
}

@media (min-width: 1024px) {
	.related-products-grid {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	}
}

.app-header {
	position: sticky;
	top: 0;
	z-index: 200;
	background: #fff;
}

.header-content {
	max-width: 768px;
	margin: 0 auto;
	padding: 12px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header-logo {
	font-size: 20px;
	font-weight: 700;
	color: var(--text-primary);
	margin: 0;
}

.back-button {
	position: relative;
	background: none;
	border: none;
	padding: 8px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .3s;
	border-radius: 50%;
}

.back-button:hover {
	background: #f3f4f6;
}

.back-button svg {
	color: #1f2937;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 8px;
}

.share-button {
	position: relative;
	background: none;
	border: none;
	padding: 8px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .3s;
	border-radius: 8px;
}

.share-button:hover {
	background: #f3f4f6;
}

.cart-button {
	position: relative;
	background: none;
	border: none;
	padding: 8px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity .3s;
}

.cart-button:hover {
	opacity: .7;
}

.cart-badge {
	position: absolute;
	top: 2px;
	right: 2px;
	background: var(--primary-color);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	min-width: 18px;
	height: 18px;
	border-radius: 9px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 4px;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  /* background: #00000080; */
  /* backdrop-filter: blur(0.px); */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 1500;
  width: calc(100% - 400%);
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 8px rgba(0,0,0,0.2);
  transform: translateX(100%); /* sai totalmente para a direita */
  transition: transform 0.3s ease;
  z-index: 2001;
}

.cart-drawer.open {
  transform: translateX(0); /* entra na tela */
}



@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.cart-drawer {
	position: fixed;
	top: 0;
	right: -400px;
	width: 100%;
	max-width: 100vh;
	height: 100vh;
	background: #fff;
	box-shadow: -2px 0 8px #0000001a;
	z-index: 1001;
	display: flex;
	flex-direction: column;
	transition: right .3s ease-out;
}

.cart-drawer.open {
	right: 0;
}

.cart-drawer-header {
	padding: 16px 20px;
	border-bottom: 1px solid var(--border-color);
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #fff;
}

.cart-drawer-header h2 {
	font-size: 18px;
	font-weight: 600;
	margin: 0;
}

.cart-close-btn {
	background: none;
	border: none;
	padding: 8px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity .3s;
}

.cart-close-btn:hover {
	opacity: .7;
}

.cart-drawer-content {
	flex: 1;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
}

.cart-empty {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 20px;
}

.cart-empty p {
	font-size: 16px;
	color: var(--text-secondary);
	text-align: center;
}

.cart-items-list {
	flex: 1;
	padding: 16px 20px;
	overflow-y: auto;
}

.cart-item {
	display: flex;
	gap: 12px;
	padding: 16px 0;
	border-bottom: 1px solid var(--border-color);
	position: relative;
}

.cart-item:last-child {
	border-bottom: none;
}

.cart-item-image {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: 8px;
	background: var(--bg-gray);
}

.cart-item-details {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.cart-item-name {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	margin: 0 0 4px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	max-width: 80%;
}

.cart-item-options {
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin-bottom: 6px;
}

.cart-item-option {
	font-size: 12px;
	color: #6b7280;
	line-height: 1.3;
}

.cart-item-price {
	font-size: 16px;
	font-weight: 700;
	color: var(--primary-color);
	margin: 0;
}

.cart-item-quantity {
	display: flex;
	align-items: center;
	gap: 12px;
}

.quantity-btn {
	width: 28px;
	height: 28px;
	border: 1px solid var(--border-color);
	background: #fff;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all .3s;
}

.quantity-btn:hover {
	background: var(--bg-gray);
	border-color: var(--text-primary);
}

.quantity-value {
	font-size: 14px;
	font-weight: 500;
	min-width: 24px;
	text-align: center;
}

.cart-item-remove {
	position: absolute;
	top: 16px;
	right: 0;
	background: none;
	border: none;
	padding: 4px;
	cursor: pointer;
	color: var(--text-secondary);
	transition: color .3s;
}

.cart-item-remove:hover {
	color: var(--primary-color);
}

.cart-drawer-footer {
	padding: 16px 20px;
	border-top: 1px solid var(--border-color);
	background: #fff;
}

.cart-total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
	font-size: 16px;
	font-weight: 600;
}

.cart-total-value {
	font-size: 20px;
	color: var(--primary-color);
}

.cart-checkout-btn {
	width: 100%;
	padding: 14px;
	background: var(--primary-color);
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: opacity .3s;
}

.cart-checkout-btn:hover {
	opacity: .9;
}

.product-card {
	text-decoration: none;
	color: inherit;
	display: block;
}

@media (max-width: 480px) {
	.cart-drawer {
		max-width: 100vh;
	}
}

.checkout-page {
	background: #fafafa;
	min-height: 100vh;
	padding: 20px 0 80px;
}

.checkout-container {
	max-width: 768px;
	margin: 0 auto;
	padding: 0 16px;
}

.checkout-title {
	font-size: 24px;
	font-weight: 700;
	color: #111827;
	margin-bottom: 24px;
}

.checkout-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 10px;
	margin-bottom: 16px;
	box-shadow: 0 1px 3px #0000001a;
}

.checkout-card-title {
	font-size: 18px;
	font-weight: 700;
	color: #111827;
	margin: 0 0 16px;
}

.checkout-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.form-group {
	display: flex;
	flex-direction: column;
}

.form-label {
	font-size: 14px;
	font-weight: 500;
	color: #111827;
	margin-bottom: 4px;
}

.required {
	color: #ef4444;
}

.form-input,
.form-select {
	width: 100%;
	padding: 10px 16px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	font-size: 14px;
	color: #111827;
	transition: all .2s;
}

.form-input:focus,
.form-select:focus {
	outline: none;
	border-color: #e91e63;
	ring: 2px solid rgba(233, 30, 99, .2);
}

.form-input::placeholder {
	color: #9ca3af;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.cep-input-wrapper {
	position: relative;
}

.cep-loading {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translatey(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.cep-spinner {
	width: 20px;
	height: 20px;
	border: 2px solid #e5e7eb;
	border-top-color: #e91e63;
	border-radius: 50%;
	animation: spin .8s linear infinite;
}

.form-input.error {
	border-color: #ef4444;
}

.form-error {
	font-size: 12px;
	color: #ef4444;
	margin-top: 4px;
	display: block;
}

@media (max-width: 640px) {
	.form-row {
		grid-template-columns: 1fr;
	}
}

.shipping-options {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.shipping-option {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px;
	border: 2px solid #e5e7eb;
	border-radius: 8px;
	background: #fff;
	cursor: pointer;
	transition: all .2s;
}

.shipping-option:hover {
	border-color: #d1d5db;
}

.shipping-option.selected {
	border-color: #e91e63;
	background: #fff1f5;
}

.shipping-option-left {
	display: flex;
	align-items: center;
	gap: 12px;
}

.shipping-radio {
	width: 20px;
	height: 20px;
	border: 2px solid #d1d5db;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.shipping-option.selected .shipping-radio {
	border-color: #e91e63;
}

.shipping-radio-dot {
	width: 12px;
	height: 12px;
	background: #e91e63;
	border-radius: 50%;
}

.shipping-logo {
	height: 24px;
	object-fit: contain;
}

.shipping-info {
	text-align: left;
}

.shipping-name {
	font-size: 14px;
	font-weight: 600;
	color: #111827;
}

.shipping-days {
	font-size: 12px;
	color: #6b7280;
}

.shipping-price {
	font-size: 16px;
	font-weight: 700;
	color: #111827;
}

.shipping-price.free {
	color: #059669;
}

.order-summary {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.summary-row {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
}

.summary-label {
	color: #6b7280;
}

.summary-value {
	font-weight: 500;
	color: #111827;
}

.summary-value.free {
	color: #059669;
}

.summary-total {
	display: flex;
	justify-content: space-between;
	padding-top: 12px;
	border-top: 1px solid #e5e7eb;
}

.summary-total-label {
	font-size: 16px;
	font-weight: 700;
	color: #111827;
}

.summary-total-value {
	font-size: 20px;
	font-weight: 700;
	color: #e91e63;
}

.checkout-actions {
	display: flex;
	gap: 12px;
	margin-top: 24px;
}

.checkout-btn {
	flex: 1;
	padding: 14px 24px;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all .2s;
}

.checkout-btn.primary {
	background: #e91e63;
	color: #fff;
}

.checkout-btn.primary:hover {
	background: #c2185b;
}

.checkout-btn.secondary {
	background: #fff;
	color: #111827;
	border: 1px solid #e5e7eb;
}

.checkout-btn.secondary:hover {
	background: #f9fafb;
}

.payment-page {
	background: #fafafa;
	min-height: 100vh;
	padding: 20px 0;
}

.payment-container {
	max-width: 600px;
	margin: 0 auto;
	padding: 0 16px;
}

.payment-title {
	font-size: 24px;
	font-weight: 700;
	color: #111827;
	margin-bottom: 24px;
	text-align: center;
}

.payment-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 24px;
	margin-bottom: 16px;
	box-shadow: 0 1px 3px #0000001a;
}

.payment-card-title {
	font-size: 18px;
	font-weight: 700;
	color: #111827;
	margin: 0 0 16px;
	text-align: center;
}

.payment-info {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.payment-instruction {
	font-size: 14px;
	color: #6b7280;
	text-align: center;
}

.payment-qr {
	display: flex;
	justify-content: center;
}

.qr-code-image {
	max-width: 250px;
	width: 100%;
	height: auto;
}

.pix-code-container {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.pix-code {
	padding: 12px;
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	font-size: 12px;
	color: #111827;
	word-break: break-all;
	text-align: center;
}

.copy-btn {
	padding: 10px 20px;
	background: #e91e63;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all .2s;
}

.copy-btn:hover {
	background: #c2185b;
}

.payment-amount {
	display: flex;
	justify-content: center;
	gap: 8px;
	font-size: 18px;
	padding: 16px;
	background: #f9fafb;
	border-radius: 8px;
	width: 100%;
}

.payment-amount strong {
	color: #e91e63;
}

.payment-waiting {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 20px;
}

.waiting-spinner {
	width: 40px;
	height: 40px;
	border: 4px solid #e5e7eb;
	border-top-color: #e91e63;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.payment-waiting p {
	font-size: 14px;
	color: #111827;
	font-weight: 600;
	margin: 0;
}

.waiting-subtitle {
	font-size: 12px !important;
	color: #6b7280 !important;
	font-weight: 400 !important;
}

.payment-loading {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 400px;
	gap: 16px;
}

.spinner {
	width: 50px;
	height: 50px;
	border: 4px solid #e5e7eb;
	border-top-color: #e91e63;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

.payment-error {
	text-align: center;
	padding: 40px;
}

.payment-error h2 {
	font-size: 20px;
	color: #ef4444;
	margin-bottom: 12px;
}

.payment-error p {
	font-size: 14px;
	color: #6b7280;
	margin-bottom: 24px;
}

.payment-summary {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 24px;
	margin-bottom: 16px;
}

.payment-summary h3 {
	font-size: 16px;
	font-weight: 700;
	color: #111827;
	margin: 0 0 16px;
}

.summary-items {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 16px;
}

.summary-item {
	display: flex;
	align-items: center;
	gap: 12px;
}

.summary-item-image {
	width: 50px;
	height: 50px;
	object-fit: cover;
	border-radius: 8px;
}

.summary-item-details {
	flex: 1;
}

.summary-item-name {
	font-size: 14px;
	color: #111827;
	margin: 0 0 4px;
}

.summary-item-quantity {
	font-size: 12px;
	color: #6b7280;
	margin: 0;
}

.summary-item-price {
	font-size: 14px;
	font-weight: 600;
	color: #111827;
}

.payment-btn {
	width: 100%;
	padding: 14px 24px;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all .2s;
}

.payment-btn.primary {
	background: #e91e63;
	color: #fff;
}

.payment-btn.primary:hover {
	background: #c2185b;
}

.payment-btn.secondary {
	background: #fff;
	color: #111827;
	border: 1px solid #e5e7eb;
}

.payment-btn.secondary:hover {
	background: #f9fafb;
}

.thankyou-page {
	background: #fafafa;
	min-height: 100vh;
	padding: 40px 0;
}

.thankyou-container {
	max-width: 768px;
	margin: 0 auto;
	padding: 0 16px;
}

.success-icon {
	display: flex;
	justify-content: center;
	margin-bottom: 24px;
}

.success-icon svg {
	color: #059669;
}

.thankyou-title {
	font-size: 32px;
	font-weight: 700;
	color: #111827;
	text-align: center;
	margin-bottom: 12px;
}

.thankyou-subtitle {
	font-size: 16px;
	color: #6b7280;
	text-align: center;
	margin-bottom: 32px;
}

.order-info-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 24px;
	margin-bottom: 24px;
}

.order-number {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 16px;
	border-bottom: 1px solid #e5e7eb;
	margin-bottom: 24px;
}

.order-label {
	font-size: 14px;
	color: #6b7280;
}

.order-value {
	font-size: 18px;
	font-weight: 700;
	color: #e91e63;
}

.order-details h3,
.order-items h3,
.next-steps h3 {
	font-size: 16px;
	font-weight: 700;
	color: #111827;
	margin: 0 0 12px;
}

.delivery-info {
	font-size: 14px;
	color: #6b7280;
	line-height: 1.6;
}

.delivery-info p {
	margin: 8px 0;
}

.order-details,
.order-items,
.next-steps {
	padding-top: 24px;
	border-top: 1px solid #e5e7eb;
}

.items-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 16px;
}

.order-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.order-item-image {
	width: 60px;
	height: 60px;
	object-fit: cover;
	border-radius: 8px;
	flex-shrink: 0;
}

.order-item-details {
	flex: 1;
}

.order-item-name {
	font-size: 14px;
	font-weight: 600;
	color: #111827;
	margin: 0 0 4px;
}

.order-item-variant {
	font-size: 12px;
	color: #6b7280;
	margin: 2px 0;
}

.order-item-quantity {
	font-size: 12px;
	color: #6b7280;
	margin: 4px 0 0;
}

.order-item-price {
	font-size: 14px;
	font-weight: 600;
	color: #111827;
	flex-shrink: 0;
}

.order-total {
	display: flex;
	justify-content: space-between;
	padding-top: 16px;
	border-top: 1px solid #e5e7eb;
}

.order-total strong {
	font-size: 20px;
	color: #e91e63;
}

.next-steps ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.next-steps li {
	font-size: 14px;
	color: #6b7280;
	padding: 8px 0 8px 24px;
	position: relative;
}

.next-steps li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #059669;
	font-weight: 700;
}

.thankyou-actions {
	display: flex;
	gap: 12px;
}

.thankyou-btn {
	flex: 1;
	padding: 14px 24px;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all .2s;
}

.thankyou-btn.primary {
	background: #e91e63;
	color: #fff;
}

.thankyou-btn.primary:hover {
	background: #c2185b;
}

.thankyou-btn.secondary {
	background: #fff;
	color: #111827;
	border: 1px solid #e5e7eb;
}

.thankyou-btn.secondary:hover {
	background: #f9fafb;
}

.taxa-page {
	background: #fafafa;
	min-height: 100vh;
	overflow-x: hidden;
}

.taxa-header {
	position: sticky;
	top: 0;
	z-index: 40;
	background: #fff;
	border-bottom: 1px solid #e5e7eb;
	padding: 12px 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.taxa-header-logo {
	height: 24px;
	width: 24px;
	border-radius: 6px;
	object-fit: contain;
	position: absolute;
	left: 16px;
}

.taxa-header-title {
	font-size: 18px;
	font-weight: 700;
	color: #111827;
	margin: 0;
}

.taxa-container {
	max-width: 672px;
	margin: 0 auto;
	padding: 0 16px 80px;
}

.taxa-greeting {
	padding: 16px 0;
	text-align: center;
}

.taxa-greeting p {
	font-size: 18px;
	font-weight: 600;
	color: #111827;
	margin: 0;
}

.taxa-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 16px;
	margin-bottom: 16px;
}

.taxa-card-title {
	font-size: 20px;
	font-weight: 700;
	color: #111827;
	margin: 0 0 16px;
}

.taxa-products-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.taxa-product-item {
	display: flex;
	gap: 12px;
	padding-bottom: 12px;
	border-bottom: 1px solid #e5e7eb;
}

.taxa-product-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.taxa-product-image {
	width: 80px;
	height: 80px;
	object-fit: contain;
	border-radius: 8px;
	border: 1px solid #e5e7eb;
	flex-shrink: 0;
}

.taxa-product-details {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.taxa-product-name {
	font-size: 16px;
	font-weight: 600;
	color: #111827;
	margin: 0;
	line-height: 1.3;
}

.taxa-product-variant {
	font-size: 14px;
	color: #6b7280;
	margin: 0;
}

.taxa-product-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 8px;
}

.taxa-product-quantity {
	font-size: 14px;
	color: #6b7280;
}

.taxa-product-price {
	font-size: 18px;
	font-weight: 700;
	color: #e91e63;
}

.taxa-total-card {
	padding: 16px;
}

.taxa-total-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.taxa-total-label {
	font-size: 14px;
	color: #6b7280;
}

.taxa-total-value {
	font-size: 24px;
	font-weight: 700;
	color: #111827;
}

.taxa-warning-card {
	border: 1px solid #e5e7eb;
}

.taxa-warning-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 12px;
}

.taxa-warning-icon {
	width: 32px;
	height: 32px;
	color: #ff9800;
}

.taxa-warning-title {
	font-size: 18px;
	font-weight: 700;
	color: #111827;
	margin: 0;
}

.taxa-warning-text {
	font-size: 14px;
	color: #111827;
	line-height: 1.6;
	margin: 0;
}

.taxa-warning-highlight {
	font-weight: 700;
	color: #e91e63;
}

.taxa-breakdown {
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	padding: 12px;
	width: 100%;
	text-align: left;
}

.taxa-breakdown-title {
	font-size: 14px;
	font-weight: 600;
	color: #111827;
	margin: 0 0 8px;
}

.taxa-breakdown-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.taxa-breakdown-list li {
	font-size: 14px;
	color: #111827;
	line-height: 1.4;
}

.taxa-urgency {
	background: #ff98001a;
	border: 1px solid rgba(255, 152, 0, .3);
	border-radius: 8px;
	padding: 12px;
	width: 100%;
}

.taxa-urgency-text {
	font-size: 14px;
	font-weight: 600;
	color: #ff9800;
	margin: 0;
}

.taxa-reviews-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.taxa-review {
	padding-bottom: 16px;
	border-bottom: 1px solid #e5e7eb;
}

.taxa-review:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.taxa-review-header {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 8px;
}

.taxa-review-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.taxa-review-author {
	flex: 1;
}

.taxa-review-name {
	font-size: 15px;
	font-weight: 600;
	color: #111827;
	margin-bottom: 4px;
}

.taxa-review-stars {
	display: flex;
	gap: 2px;
	margin: 4px 0;
}

.taxa-review-location {
	font-size: 14px;
	color: #6b7280;
	margin-bottom: 8px;
}

.taxa-review-comment {
	font-size: 14px;
	color: #111827;
	line-height: 1.6;
	margin-bottom: 12px;
}

.taxa-review-image {
	width: 96px;
	height: 96px;
	object-fit: cover;
	border-radius: 8px;
	margin-top: 12px;
}

.taxa-payment-card {
	padding: 16px;
}

.taxa-payment-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 16px;
}

.taxa-payment-label {
	font-size: 16px;
	font-weight: 600;
	color: #111827;
}

.taxa-payment-value {
	font-size: 16px;
	font-weight: 700;
	color: #e91e63;
}

.taxa-payment-btn {
	width: 100%;
	height: 56px;
	padding: 16px;
	background: #e91e63;
	color: #fff;
	border: none;
	border-radius: 9999px;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	transition: all .2s;
}

.taxa-payment-btn:hover:not(:disabled) {
	background: #c2185b;
}

.taxa-payment-btn:disabled {
	opacity: .5;
	cursor: not-allowed;
}

.taxa-error {
	background: #fef2f2;
	border: 1px solid #fecaca;
	color: #dc2626;
	padding: 12px;
	border-radius: 8px;
	font-size: 14px;
	text-align: center;
	margin-bottom: 16px;
}

.taxa-stores-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 16px;
	border-top: 1px solid #e5e7eb;
}

.taxa-store-item {
	background: #fafafa;
	border-radius: 8px;
	padding: 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.taxa-store-logo {
	width: 48px;
	height: 48px;
	object-fit: contain;
	border-radius: 8px;
	flex-shrink: 0;
}

.taxa-store-info {
	flex: 1;
}

.taxa-store-name {
	font-size: 14px;
	font-weight: 600;
	color: #111827;
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 4px;
}

.taxa-store-badge {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.taxa-store-count {
	font-size: 12px;
	color: #6b7280;
}

@media (max-width: 640px) {
	.taxa-container {
		padding: 0 16px 80px;
	}

	.taxa-card {
		padding: 12px;
	}

	.taxa-product-image {
		width: 64px;
		height: 64px;
	}
}