/* =========================================================
   Theme4 — Base
   ========================================================= */
.sm-header {
	background: var(--surface);
	padding: 0;
	position: relative;
	z-index: 1030;
	box-shadow: 0 1px 0 var(--border);
	overflow: visible;
}

.sm-header.is-hidden {
	transform: none;
	pointer-events: auto;
}

.sm-body {
	background: var(--background);
	color: var(--text);
	padding-top: 0;
	font-family: var(--font);
	-webkit-font-smoothing: antialiased;
}

.sm-body.sm-header-collapsed {
	padding-top: 0;
}

@media (min-width: 992px) {
	.sm-body {
		padding-bottom: 0;
	}
}

.sm-container {
	max-width: var(--container);
	margin: 0 auto;
	padding-left: 16px;
	padding-right: 16px;
}

.sm-page-wrap {
	width: 100%;
}

.sm-body .page {
	padding-top: 1.25rem;
	padding-bottom: 1.25rem;
}

/* =========================================================
   Header — Logo / Search / Info
   ========================================================= */
.t4-header__inner {
	padding-top: 14px;
	padding-bottom: 0;
}

.t4-logo {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	color: var(--text);
	flex-shrink: 0;
}

.t4-logo img {
	max-height: 42px;
	width: auto;
	display: block;
}

.t4-logo__text {
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--primary);
}

.t4-header-top {
	display: grid;
	grid-template-columns: auto minmax(280px, 1fr) auto;
	align-items: center;
	gap: 28px;
	padding-bottom: 16px;
}

.t4-header-top__search {
	width: 100%;
	max-width: 640px;
	margin: 0 auto;
}

.t4-header-info {
	display: flex;
	align-items: center;
	gap: 28px;
	flex-shrink: 0;
}

.t4-header-info__item {
	display: flex;
	align-items: center;
	gap: 10px;
}

.t4-header-info__icon {
	display: inline-flex;
	color: var(--text);
	flex-shrink: 0;
}

.t4-header-info__text {
	display: flex;
	flex-direction: column;
	line-height: 1.25;
	gap: 2px;
}

.t4-header-info__label {
	font-size: 0.8125rem;
	color: var(--text);
}

.t4-header-info__value {
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--primary);
	text-decoration: none;
}

.t4-header-info__value:hover {
	color: var(--primary-hover);
}

/* =========================================================
   Search
   ========================================================= */
.t4-search {
	position: relative;
	width: 100%;
}

.t4-search__form,
.sm-search.t4-search__form {
	display: flex;
	align-items: center;
	gap: 0;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-pill);
	padding: 4px 4px 4px 20px;
	min-height: 48px;
	box-shadow: none;
	transition: border-color var(--transition), box-shadow var(--transition);
}

.t4-search__form:focus-within,
.sm-search.t4-search__form:focus-within {
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(61, 71, 217, 0.12);
	background: var(--white);
}

.t4-search__input,
.t4-search__form input,
.sm-search.t4-search__form input {
	flex: 1;
	border: 0;
	background: transparent;
	outline: none;
	font-size: 0.875rem;
	font-weight: 400;
	color: var(--text);
	min-width: 0;
	padding: 0;
	box-shadow: none;
}

.t4-search__input::placeholder,
.sm-search.t4-search__form input::placeholder {
	color: #B0B0B0;
}

.t4-search__btn {
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 50%;
	background: var(--primary);
	color: var(--white);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	cursor: pointer;
	transition: background var(--transition), transform var(--transition);
}

.t4-search__btn:hover {
	background: var(--primary-hover);
}

.sm-header-search__suggest {
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% + 8px);
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	max-height: 360px;
	overflow-y: auto;
	z-index: 1050;
}

.sm-header-search__suggest.is-open[hidden] {
	display: none;
}

.sm-header-search__suggest:not([hidden]) {
	display: block;
}

.sm-header-search__item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	text-decoration: none;
	color: inherit;
	border-bottom: 1px solid var(--border);
	transition: background var(--transition);
}

.sm-header-search__item:hover {
	background: var(--background);
}

.sm-header-search__thumb {
	width: 44px;
	height: 44px;
	object-fit: contain;
	border-radius: 8px;
	background: var(--background);
	flex-shrink: 0;
}

.sm-header-search__body {
	flex: 1;
	min-width: 0;
}

.sm-header-search__name {
	font-size: 0.85rem;
	font-weight: 600;
	line-height: 1.3;
}

.sm-header-search__meta {
	font-size: 0.72rem;
	color: var(--text-muted);
}

.sm-header-search__price {
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--primary);
	white-space: nowrap;
}

.sm-header-search__empty {
	padding: 14px;
	font-size: 0.85rem;
	color: var(--text-muted);
	text-align: center;
}

/* =========================================================
   Header — Nav / Categories / Tools
   ========================================================= */
.t4-header-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	border-top: 1px solid var(--border);
	padding: 12px 0;
}

.t4-header-nav__left {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
	flex: 1;
}

.t4-cats-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 42px;
	padding: 0 18px;
	border: 0;
	border-radius: var(--radius-pill);
	background: var(--primary);
	color: var(--white);
	font-size: 0.875rem;
	font-weight: 600;
	white-space: nowrap;
	cursor: pointer;
	transition: background var(--transition);
}

.t4-cats-btn:hover,
.t4-cats-btn:focus,
.t4-cats-btn[aria-expanded="true"] {
	background: var(--primary-hover);
	color: var(--white);
}

.t4-mega-menu {
	min-width: 260px;
	max-height: 420px;
	overflow-y: auto;
	padding: 8px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	margin-top: 8px !important;
}

.t4-mega-menu__link {
	display: block;
	padding: 10px 12px;
	border-radius: 8px;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--text);
	text-decoration: none;
	transition: background var(--transition), color var(--transition);
}

.t4-mega-menu__link:hover,
.t4-mega-menu__link.is-active {
	background: var(--primary-light);
	color: var(--primary);
}

.t4-nav-list {
	display: flex;
	align-items: center;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
	flex-wrap: nowrap;
	overflow-x: auto;
	scrollbar-width: none;
}

.t4-nav-list::-webkit-scrollbar {
	display: none;
}

.t4-nav-list > li {
	flex: 0 0 auto;
}

.t4-nav-link,
.sm-header-menu__link,
.sm-header-menu__list--hook a {
	display: inline-flex;
	align-items: center;
	padding: 8px 14px;
	border-radius: var(--radius-pill);
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--text);
	text-decoration: none;
	white-space: nowrap;
	transition: background var(--transition), color var(--transition);
}

.t4-nav-link:hover,
.t4-nav-link.is-active,
.sm-header-menu__link:hover,
.sm-header-menu__link.is-active,
.sm-header-menu__list--hook a:hover,
.sm-header-menu__list--hook a.active {
	background: var(--primary-light);
	color: var(--primary);
}

.t4-header-tools {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.t4-tool-icon {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	color: var(--text);
	text-decoration: none;
	border-radius: 50%;
	transition: background var(--transition), color var(--transition);
}

.t4-tool-icon:hover {
	background: var(--primary-light);
	color: var(--primary);
}

.t4-tool-icon__badge {
	position: absolute;
	top: 2px;
	right: 2px;
	min-width: 16px;
	height: 16px;
	padding: 0 4px;
	border-radius: var(--radius-pill);
	background: var(--primary);
	color: var(--white);
	font-size: 10px;
	font-weight: 700;
	line-height: 16px;
	text-align: center;
}

.t4-cart-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	height: 42px;
	padding: 0 16px 0 12px;
	border-radius: var(--radius-pill);
	background: var(--primary);
	color: var(--white);
	text-decoration: none;
	font-size: 0.875rem;
	font-weight: 600;
	transition: background var(--transition);
}

.t4-cart-btn:hover {
	background: var(--primary-hover);
	color: var(--white);
}

.t4-cart-btn__icon {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.t4-cart-btn__badge,
.sm-icon-btn__badge {
	position: absolute;
	top: -8px;
	right: -8px;
	min-width: 16px;
	height: 16px;
	padding: 0 4px;
	border-radius: var(--radius-pill);
	background: var(--white);
	color: var(--primary);
	font-size: 10px;
	font-weight: 700;
	line-height: 16px;
	text-align: center;
}

.sm-icon-btn__badge {
	top: 4px;
	right: 4px;
	background: var(--primary);
	color: var(--white);
}

.t4-cart-btn__total {
	white-space: nowrap;
}

.sm-icon-btn,
.t4-icon-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: none;
	background: transparent;
	color: var(--text);
	border-radius: 12px;
	text-decoration: none;
	transition: background var(--transition), color var(--transition);
}

.sm-icon-btn:hover,
.t4-icon-btn:hover {
	background: var(--primary-light);
	color: var(--primary);
}

.sm-header__actions {
	display: flex;
	align-items: center;
	gap: 6px;
}

.sm-header__action-slot {
	position: relative;
	display: inline-flex;
	align-items: center;
}

.sm-header__action-slot .notification-bell-btn {
	width: 40px;
	height: 40px;
	border-radius: 12px;
}

.sm-header__action-slot .notification-bell-badge {
	top: 4px;
	right: 4px;
	background: var(--primary);
}

.sm-header-mobile {
	display: block;
}

.sm-header-desktop {
	display: none;
}

.sm-header__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-height: 52px;
}

.sm-search-wrap {
	padding: 10px 0 14px;
}

@media (min-width: 992px) {
	.sm-header-mobile {
		display: none;
	}

	.sm-header-desktop {
		display: block;
	}
}

@media (max-width: 1199.98px) {
	.t4-header-info {
		gap: 16px;
	}

	.t4-header-top {
		gap: 16px;
	}
}

@media (max-width: 991.98px) {
	.sm-header-menu {
		display: none !important;
	}
}

/* =========================================================
   Breadcrumb
   ========================================================= */
.sm-breadcrumb {
	margin-bottom: 16px;
	margin-top: 16px;
}

.sm-breadcrumb__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px 0;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 13px;
	line-height: 1.4;
	color: var(--text-muted);
}

.sm-breadcrumb__item {
	display: inline-flex;
	align-items: center;
	max-width: 100%;
}

.sm-breadcrumb__item:not(:last-child)::after {
	content: "/";
	margin: 0 10px;
	color: var(--border);
	flex-shrink: 0;
}

.sm-breadcrumb__item a {
	color: inherit;
	text-decoration: none;
	transition: color var(--transition);
}

.sm-breadcrumb__item a:hover {
	color: var(--primary);
}

.sm-breadcrumb__item--active span {
	color: var(--text);
	font-weight: 500;
}

/* =========================================================
   Hero
   ========================================================= */
.t4-hero {
	margin-bottom: 28px;
}

.t4-hero__hook .fshop-slider,
.t4-hero__hook .fshop-slider__slide,
.t4-hero__hook .fshop-slider__slide img,
.sm-hero .fshop-slider,
.sm-hero .fshop-slider__slide,
.sm-hero .fshop-slider__slide img,
.sm-hero .slider-wrapper,
.sm-hero #slide {
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.sm-hero .fshop-slider {
	box-shadow: none;
}

.t4-hero-slide {
	display: grid;
	grid-template-columns: 1fr;
	background:
		radial-gradient(circle at 78% 45%, rgba(61, 71, 217, 0.06) 0%, transparent 42%),
		radial-gradient(circle at 85% 55%, rgba(61, 71, 217, 0.04) 0%, transparent 50%),
		linear-gradient(180deg, #F3F4F8 0%, #FAFBFC 55%, #FFFFFF 100%);
	border-radius: var(--radius-lg);
	overflow: hidden;
	min-height: 280px;
	position: relative;
}

.t4-hero-slide::before {
	content: "";
	position: absolute;
	right: 8%;
	top: 50%;
	width: 340px;
	height: 340px;
	transform: translateY(-50%);
	border-radius: 50%;
	border: 1px solid rgba(61, 71, 217, 0.08);
	pointer-events: none;
	box-shadow:
		0 0 0 28px rgba(61, 71, 217, 0.04),
		0 0 0 56px rgba(61, 71, 217, 0.03);
}

@media (min-width: 768px) {
	.t4-hero-slide {
		grid-template-columns: 1.05fr 0.95fr;
		min-height: 360px;
	}
}

.t4-hero-slide__content {
	padding: 36px 28px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	z-index: 1;
}

.t4-hero-slide__title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	line-height: 1.1;
	margin: 0 0 12px;
	letter-spacing: -0.02em;
}

.t4-hero-slide__accent {
	display: block;
	color: var(--primary);
}

.t4-hero-slide__dark {
	display: block;
	color: var(--text);
}

.t4-hero-slide__brand {
	margin: 0 0 10px;
	font-size: 1rem;
	font-weight: 700;
	color: var(--text);
}

.t4-hero-slide__text {
	color: var(--text-muted);
	font-size: 0.9rem;
	line-height: 1.55;
	margin: 0 0 20px;
	max-width: 380px;
}

.t4-hero-slide__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--primary);
	color: var(--white);
	border: 0;
	border-radius: var(--radius-pill);
	padding: 10px 22px;
	font-weight: 600;
	font-size: 0.875rem;
	text-decoration: none;
	width: fit-content;
	transition: background var(--transition);
}

.t4-hero-slide__btn:hover {
	background: var(--primary-hover);
	color: var(--white);
}

.t4-hero-slide__media {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	position: relative;
	z-index: 1;
}

.t4-hero-slide__media img {
	max-height: 280px;
	width: auto;
	object-fit: contain;
}

/* =========================================================
   Featured category promo cards
   ========================================================= */
.t4-featured-cats {
	margin: 8px 0 36px;
}

.t4-featured-cats__head {
	text-align: center;
	margin-bottom: 22px;
}

.t4-featured-cats__eyebrow {
	margin: 0 0 4px;
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--text);
}

.t4-featured-cats__title {
	margin: 0;
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--text-muted);
}

.t4-promo-card {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 128px;
	padding: 16px 18px;
	border-radius: 14px;
	text-decoration: none;
	color: var(--white);
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(26, 26, 26, 0.08);
	transition: transform var(--transition), box-shadow var(--transition);
}

.t4-promo-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(26, 26, 26, 0.12);
	color: var(--white);
}

.t4-promo-card--1 {
	background: linear-gradient(115deg, #7B2FF7 0%, #A855F7 100%);
}

.t4-promo-card--2 {
	background: linear-gradient(115deg, #F59E0B 0%, #FDBA74 100%);
}

.t4-promo-card--3 {
	background: linear-gradient(115deg, #2563EB 0%, #60A5FA 100%);
}

.t4-promo-card--4 {
	background: linear-gradient(115deg, #EF4444 0%, #F87171 100%);
}

.t4-promo-card__media {
	width: 72px;
	height: 88px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.t4-promo-card__media img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.18));
}

.t4-promo-card__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
	min-width: 0;
}

.t4-promo-card__title {
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.3;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.t4-promo-card__btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--white);
	color: var(--text);
	border-radius: var(--radius-pill);
	padding: 6px 12px;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

/* =========================================================
   Sections
   ========================================================= */
.sm-section,
.t4-section {
	margin-bottom: 32px;
}

.sm-section__head,
.t4-section__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 16px;
}

.sm-section__title,
.t4-section__title {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--text);
}

.sm-section__link,
.t4-section__link {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--primary);
	text-decoration: none;
	white-space: nowrap;
}

.sm-section__link:hover,
.t4-section__link:hover {
	color: var(--primary-hover);
}

.sm-countdown,
.t4-countdown {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 6px;
	font-size: 0.8rem;
	color: var(--text-muted);
}

.sm-countdown__time {
	font-weight: 700;
	color: var(--primary);
}

/* =========================================================
   Product cards
   ========================================================= */
.t4-product-card,
.sm-body .product-card,
.sm-body .panel.product-card {
	position: relative;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 12px;
	text-align: center;
	box-shadow: none;
	transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
	margin-bottom: 0;
	overflow: hidden;
}

.t4-product-card:hover,
.sm-body .product-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow);
	border-color: #E2E4F0;
}

.t4-product-card__badge,
.miniDiscount {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 2;
	background: var(--primary);
	color: var(--white);
	font-size: 0.7rem;
	font-weight: 700;
	padding: 4px 8px;
	border-radius: 8px;
}

.t4-product-card__badge--oos,
.miniDiscount.bg-danger {
	background: var(--danger);
}

.t4-product-card__fav {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 2;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 0;
	background: rgba(255, 255, 255, 0.95);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-muted);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	cursor: pointer;
	transition: color var(--transition), background var(--transition);
}

.t4-product-card__fav:hover,
.t4-product-card__fav.is-active,
.t4-product-card__fav.active {
	color: var(--danger);
}

.t4-product-card__image,
.sm-body .product-image-wrapper {
	background: var(--background);
	border-radius: 10px;
	padding: 16px;
	margin-bottom: 12px;
	height: 180px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.t4-product-card__image img,
.sm-body .product-image-wrapper img {
	max-height: 100%;
	width: auto;
	object-fit: contain;
}

.t4-product-card__title,
.sm-body .product-title {
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.35;
	height: auto;
	min-height: 2.7em;
	max-height: 2.7em;
	overflow: hidden;
	color: var(--text);
	margin-bottom: 10px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.t4-product-card__prices .current-price,
.sm-body .current-price {
	color: var(--primary);
	font-weight: 700;
	font-size: 1rem;
}

.t4-product-card__prices .old-price,
.sm-body .old-price {
	color: #A3A3A3;
	font-size: 0.75rem;
	text-decoration: line-through;
}

.t4-product-card__cart,
.sm-body .btn-details,
.sm-body .prime-btn--primary,
.sm-body .btn-primary, .btn-footer-submit {
	background: var(--primary);
	border-color: var(--primary);
	border-radius: 10px;
	color: var(--white);
	font-size: 0.8125rem;
	font-weight: 600;
	padding: 10px 12px;
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: background var(--transition), border-color var(--transition);
}

.t4-product-card__cart:hover,
.sm-body .btn-details:hover,
.sm-body .prime-btn--primary:hover {
	background: var(--primary-hover);
	border-color: var(--primary-hover);
	color: var(--white);
}

.produtDiv {
	width: 245px;
}

.t4-product-card .imageButtons,
.t4-product-card .priceAllertButton {
	display: none;
}

.sm-product-card {
	flex: 0 0 168px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	position: relative;
	box-shadow: none;
	transition: transform var(--transition), box-shadow var(--transition);
}

@media (min-width: 768px) {
	.sm-product-card {
		flex: 0 0 200px;
	}
}

.sm-product-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow);
}

.sm-product-card__fav {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 2;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 0;
	background: rgba(255, 255, 255, 0.92);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-muted);
	cursor: pointer;
}

.sm-product-card__fav.is-active,
.sm-product-card__fav:hover {
	color: var(--danger);
}

.sm-product-card__badge {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 2;
	background: var(--primary);
	color: var(--white);
	font-size: 0.7rem;
	font-weight: 700;
	padding: 3px 8px;
	border-radius: 8px;
}

.sm-product-card__image {
	display: block;
	aspect-ratio: 1;
	padding: 16px;
	background: var(--background);
}

.sm-product-card__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.sm-product-card__body {
	padding: 12px;
}

.sm-product-card__name {
	font-size: 0.82rem;
	font-weight: 600;
	line-height: 1.3;
	margin: 0 0 6px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	color: var(--text);
	text-decoration: none;
}

.sm-product-card__price-current {
	color: var(--primary);
	font-weight: 700;
	font-size: 0.95rem;
}

.sm-product-card__price-old {
	color: #A3A3A3;
	font-size: 0.75rem;
	text-decoration: line-through;
}

/* =========================================================
   Trust bar (module) overrides
   ========================================================= */
.sm-trust-bar {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin: 32px 0 24px;
}

@media (min-width: 768px) {
	.sm-trust-bar {
		grid-template-columns: repeat(4, 1fr);
	}
}

.sm-trust-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 14px;
	background: var(--surface);
	border-radius: var(--radius);
	border: 1px solid var(--border);
}

.sm-trust-item__icon {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: var(--primary-light);
	color: var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.sm-trust-item strong {
	display: block;
	font-size: 0.8rem;
	margin-bottom: 2px;
}

.sm-trust-item span {
	font-size: 0.72rem;
	color: var(--text-muted);
}

/* =========================================================
   Footer intro + service bar + footer
   ========================================================= */
.t4-footer-intro {
	background: transparent;
	padding: 40px 0 0;
}

.t4-footer-intro__box {
	background: var(--background);
	border-radius: 12px;
	padding: 40px 48px;
}

.t4-footer-intro__title {
	margin: 0 0 16px;
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--text);
}

.t4-footer-intro__body {
	max-height: 4.8em;
	overflow: hidden;
	transition: max-height 300ms ease;
}

.t4-footer-intro__body.is-open {
	max-height: 1200px;
}

.t4-footer-intro__text {
	margin: 0 0 12px;
	font-size: 0.9rem;
	line-height: 1.7;
	color: var(--text-muted);
}

.t4-footer-intro__prompt {
	margin: 0 0 8px;
	font-size: 0.85rem;
	color: #A0A0A0;
}

.t4-footer-intro__toggle {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 12px;
	padding: 8px 14px;
	border: 1px solid var(--border);
	border-radius: 8px;
	background: var(--white);
	color: var(--text);
	font-size: 0.8125rem;
	font-weight: 600;
	cursor: pointer;
	transition: border-color var(--transition), color var(--transition);
}

.t4-footer-intro__toggle:hover {
	border-color: var(--primary);
	color: var(--primary);
}

.t4-footer-intro__toggle.is-open svg {
	transform: rotate(180deg);
}

.t4-footer-intro__toggle svg {
	transition: transform var(--transition);
}

.t4-service-bar {
	background: var(--primary);
	color: var(--white);
	padding: 28px 0;
	margin-top: 0;
}

.t4-service-bar__row {
	align-items: center;
}

.t4-service-bar__item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 8px 0;
}

.t4-service-bar__icon {
	display: inline-flex;
	flex-shrink: 0;
}

.t4-service-bar__text {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.t4-service-bar__text strong {
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	line-height: 1.3;
}

.t4-service-bar__text span {
	font-size: 0.8125rem;
	font-weight: 400;
	opacity: 0.92;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.t4-service-bar__info {
	opacity: 0.85;
	flex-shrink: 0;
}

.t4-footer {
	background: var(--white);
	padding: 48px 0 24px;
	border-top: 0;
	color: var(--text);
}

.t4-footer__title {
	margin: 0 0 16px;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--text);
}

.t4-footer__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.t4-footer__list a {
	color: var(--text-muted);
	text-decoration: none;
	font-size: 0.875rem;
	transition: color var(--transition);
}

.t4-footer__list a:hover {
	color: var(--primary);
}

.t4-footer-brand__logo {
	display: inline-block;
	margin-bottom: 14px;
	line-height: 0;
}

.t4-footer-brand__logo img {
	display: block;
	max-height: 48px;
	width: auto;
}

.t4-footer-brand__text {
	margin: 0;
	font-size: 0.85rem;
	line-height: 1.6;
	color: var(--text-muted);
	max-width: 260px;
}

.t4-footer__service-text {
	margin: 0 0 14px;
	font-size: 0.85rem;
	line-height: 1.6;
	color: var(--text-muted);
}

.t4-footer__contact {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 16px;
}

.t4-footer__contact a {
	color: var(--text);
	text-decoration: none;
	font-size: 0.875rem;
	font-weight: 500;
	transition: color var(--transition);
}

.t4-footer__contact a:hover {
	color: var(--primary);
}

.t4-footer__payments {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.t4-pay-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 28px;
	padding: 0 8px;
	border: 1px solid var(--border);
	border-radius: 6px;
	background: var(--white);
}

.t4-pay-badge--iyzico {
	font-size: 0.7rem;
	font-weight: 700;
	color: #1E64FF;
	letter-spacing: -0.02em;
}

.t4-footer__bottom {
	margin-top: 36px;
	padding-top: 18px;
	border-top: 1px solid var(--border);
	font-size: 0.75rem;
	color: var(--text-muted);
}

@media (max-width: 767.98px) {
	.t4-footer-intro__box {
		padding: 28px 20px;
	}

	.t4-service-bar {
		padding: 20px 0;
	}

	.t4-service-bar__item {
		justify-content: flex-start;
		padding: 12px 0;
	}
}

/* =========================================================
   Mobile bottom nav
   ========================================================= */
.sm-bottom-nav {
	position: fixed;
	left: 10px;
	right: 10px;
	bottom: 5px;
	z-index: 1040;
	background: rgba(255, 255, 255, 0.82);
	border-radius: 8px;
	box-shadow: var(--shadow-nav);
	display: flex;
	justify-content: space-around;
	padding: 0 4px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}

@media (min-width: 992px) {
	.sm-bottom-nav {
		display: none;
	}
}

.sm-bottom-nav__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	padding: 3px 12px 2px;
	border-radius: 8px;
	text-decoration: none;
	color: var(--text-muted);
	font-size: 0.65rem;
	font-weight: 500;
	min-width: 64px;
	border: 0;
	background: transparent;
}

.sm-bottom-nav__item.is-active {
	color: var(--primary);
}

.sm-bottom-nav__item.is-active .sm-bottom-nav__icon {
	background: var(--primary-light);
	color: var(--primary);
}

.sm-bottom-nav__icon {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
}

/* =========================================================
   Cart modal fallback
   ========================================================= */
.blue-cart-overlay:not(.show),
.blue-cart-modal:not(.show) {
	opacity: 0 !important;
	visibility: hidden !important;
	pointer-events: none !important;
}

.blue-cart-modal:not(.show) {
	display: none !important;
}

.blue-cart-modal.show {
	display: flex !important;
}

.sm-body .prime-filter-link.is-active {
	background: var(--primary);
}

/* =========================================================
   Mobile menu polish
   ========================================================= */
.prime-mobile-menu .offcanvas-body {
	background: var(--white);
}

.dress-mobile-menu__item.is-active,
.dress-mobile-menu__item:hover {
	color: var(--primary);
}

/* =========================================================
   Responsive refinements
   ========================================================= */
@media (max-width: 575.98px) {
	.t4-hero-slide__content {
		padding: 28px 20px 16px;
	}

	.t4-promo-card {
		min-height: 112px;
	}

	.produtDiv {
		width: 200px;
	}
}

@media (min-width: 1400px) {
	.sm-container {
		max-width: var(--container);
	}
}

/* Drawer — flat list */
.t4-drawer { display: flex; flex-direction: column; min-height: 100%; background: #fff; }
.t4-drawer__head {
	display: flex; align-items: center; justify-content: space-between;
	padding: 16px 18px; border-bottom: 1px solid var(--border);
}
.t4-drawer__brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); }
.t4-drawer__brand img { height: 32px; width: auto; }
.t4-drawer__brand strong { font-size: 0.95rem; }
.t4-drawer__close {
	width: 40px; height: 40px; border: 0; border-radius: 50%;
	background: #f3f4f6; color: var(--text);
}
.t4-drawer__nav { flex: 1; overflow: auto; padding: 8px 10px 16px; display: flex; flex-direction: column; }
.t4-drawer__link {
	display: block; padding: 13px 14px; border-radius: 12px;
	color: var(--text); text-decoration: none; font-weight: 600; font-size: 0.95rem;
}
.t4-drawer__link--sub { padding-left: 26px; font-weight: 500; color: var(--text-muted); font-size: 0.88rem; }
.t4-drawer__link.is-active, .t4-drawer__link:hover { background: var(--primary-light); color: var(--primary); }
.t4-drawer__foot { padding: 14px 16px 22px; border-top: 1px solid var(--border); }

.t4-lang { display: grid; grid-template-columns: repeat(auto-fit, minmax(0, 1fr)); gap: 8px; }
.t4-lang__btn {
	display: flex; flex-direction: column; align-items: center; gap: 2px;
	padding: 10px 8px; border-radius: 14px; text-decoration: none;
	background: #f4f6f8; color: var(--text-muted); border: 1px solid transparent;
}
.t4-lang__code { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; }
.t4-lang__label { font-size: 0.78rem; font-weight: 600; }
.t4-lang__btn.is-active { background: var(--primary); color: #fff; }

.sm-bottom-nav {
	left: 12px; right: 12px; bottom: calc(10px + env(safe-area-inset-bottom, 0px));
	padding: 8px 6px calc(8px + env(safe-area-inset-bottom, 0px));
	border-radius: 22px;
	background: rgba(255,255,255,0.92);
	box-shadow: 0 8px 32px rgba(15,23,42,0.14);
}
.sm-bottom-nav__item { min-width: 0; flex: 1; font-size: 0.62rem; }
.sm-bottom-nav__badge {
	position: absolute; top: -2px; right: -4px;
	min-width: 16px; height: 16px; padding: 0 4px; border-radius: 99px;
	background: var(--primary); color: #fff; font-size: 0.6rem; font-weight: 700;
	display: inline-flex; align-items: center; justify-content: center;
}
.sm-bottom-nav__icon { position: relative; width: 36px; height: 36px; }
@media (max-width: 991.98px) {
	.sm-body { padding-bottom: 84px; }
}

/* Auth split (login / register) */
.auth-split { display: flex; justify-content: center; padding: 12px 0 32px; }
.auth-split__panel--form { width: 100%; max-width: 420px; margin: 0 auto; background: #fff; border-radius: 20px; padding: 28px 22px; box-shadow: 0 12px 40px rgba(15,23,42,0.06); }
.auth-split__intro { text-align: center; margin-bottom: 18px; }
.auth-split__intro h1 { margin: 0 0 6px; font-size: 1.55rem; font-weight: 800; letter-spacing: -0.03em; }
.auth-split__intro p { margin: 0; color: var(--text-muted); }
.auth-split__tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 6px; margin-bottom: 20px; background: #f1f5f9; border-radius: 16px; }
.auth-split__tab { display: flex; align-items: center; justify-content: center; padding: 10px; border-radius: 12px; font-weight: 700; color: #64748b; text-decoration: none; }
.auth-split__tab.is-active { background: #fff; color: #0f172a; box-shadow: 0 1px 3px rgba(15,23,42,0.08); }
.auth-input { position: relative; }
.auth-input .form-control { padding-left: 2.6rem; min-height: 48px; border-radius: 12px; }
.auth-input__icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: #94a3b8; pointer-events: none; }
.auth-split__link { font-size: 0.85rem; font-weight: 600; color: var(--primary); text-decoration: none; }
.auth-split__submit, .auth-split .btn-details { min-height: 48px; border-radius: 12px; font-weight: 700; }
.auth-split__success { text-align: center; padding: 12px 0; }

/* Account hub */
.sn-acc { margin: 8px auto 24px; }
.sn-acc-hub { max-width: 720px; margin: 0 auto; }
.sn-acc-detail { max-width: 800px; margin: 0 auto; display: none; }
.sn-acc-hub.is-hidden { display: none; }
.sn-acc-detail.is-open { display: block; }
.sn-acc-profile { text-align: center; margin: 8px 0 24px; }
.sn-acc-avatar { width: 84px; height: 84px; margin: 0 auto 12px; border-radius: 50%; background: #e9ecef; color: #343a40; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 800; }
.sn-acc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.sn-acc-item, .sn-acc-logout { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 16px 18px; border: 0; border-radius: 14px; background: #fff; box-shadow: 0 6px 18px rgba(15,23,42,0.05); color: #212529; text-decoration: none; font-family: inherit; text-align: left; }
.sn-acc-item__left { display: flex; align-items: center; gap: 10px; font-weight: 650; }
.sn-acc-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); margin-left: 6px; }
.sn-acc-back { display: inline-flex; align-items: center; gap: 6px; margin-bottom: 12px; background: none; border: 0; color: var(--primary); font-weight: 650; }
.sn-acc-detail .dress-account-main { background: #fff; border-radius: 16px; padding: 18px; box-shadow: 0 6px 18px rgba(15,23,42,0.05); }
@media (max-width: 575.98px) { .sn-acc-grid { grid-template-columns: 1fr; } }

/* Checkout layout from default2 */
.sn-cko { width: 100%; margin: 0 0 32px; }
.sn-cko__hero { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; margin-bottom: 24px; }
.sn-cko__kicker { margin: 0 0 6px; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--primary); }
.sn-cko__grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr); gap: 22px; align-items: start; }
.sn-cko-steps { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.sn-cko-steps span { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 50%; background: #e2e8f0; font-size: 0.72rem; margin-right: 6px; }
.checkout-steps__item.is-active { color: var(--primary); }
@media (max-width: 991.98px) { .sn-cko__grid { grid-template-columns: 1fr; } }

.sn-cko-success .success-icon {
	width: 64px; height: 64px; margin: 0 auto 12px; border-radius: 50%;
	background: #ecfdf3; color: #16a34a; display: flex; align-items: center; justify-content: center;
	font-size: 1.8rem; font-weight: 700;
}
.t4-widget-logo__img {margin-bottom:16px}

/* Flutter-like mobile shell */
.prime-mobile-menu.offcanvas {
	width: min(86vw, 340px);
	border: 0;
	box-shadow: 8px 0 32px rgba(15, 23, 42, 0.12);
}
.prime-mobile-menu .offcanvas-body {
	padding: 0;
	display: flex;
	flex-direction: column;
}
.t4-drawer {
	padding-top: env(safe-area-inset-top, 0);
	padding-bottom: env(safe-area-inset-bottom, 0);
}
.t4-drawer__link {
	min-height: 48px;
	display: flex;
	align-items: center;
}
.t4-lang {
	display: block;
}
.t4-lang__track {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
	gap: 6px;
	padding: 6px;
	background: #f1f5f9;
	border-radius: 18px;
}
.t4-lang__btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	padding: 10px 8px;
	border-radius: 14px;
	text-decoration: none;
	background: transparent;
	color: #64748b;
	border: 0;
}
.t4-lang__flag {
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
}
.t4-lang__label { font-size: 0.78rem; font-weight: 600; }
.t4-lang__btn.is-active {
	background: #fff;
	color: #0f172a;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
}
.sn-cko-guest {
	max-width: 640px;
	margin: 0 auto 20px;
	padding: 20px 22px;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
	text-align: center;
}
.sn-cko-guest h2 { margin: 0 0 6px; font-size: 1.15rem; font-weight: 800; }
.sn-cko-guest p { margin: 0 0 14px; color: var(--text-muted); }
.sn-cko-guest .prime-btn { min-width: 220px; }
@media (max-width: 991.98px) {
	.sm-header-mobile .t4-header-mobile__row {
		min-height: 52px;
	}
	.sm-icon-btn, .t4-icon-btn {
		width: 44px;
		height: 44px;
	}
}