/*------------------------------------------------------------------
Project:  
Version:  
Last change:  
Assigned to:  Le Xuan Bach
Primary use:  Company
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[LAYOUT]

* body
  + Header / header
  + Page Content / .page-content .name-page
        + Section Layouts / section .name-section
        ...
  + Footer / footer

-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[COLOR CODES]

# Text Color      :  
# Primary Color 01:  
# Primary Color 02:   
# Primary Color 03:  

------------------------------------------------------------------*/
/*------------------------------------------------------------------
[TYPOGRAPHY]

Body            : 16px/1.6 '', Arial, sans-serif;
Title           : 18px/1.6 '', Arial, sans-serif;
Paragrap        : 18px/1.6 '', Arial, sans-serif;
Input, textarea : 14px/1.6 '', Arial, sans-serif;
-------------------------------------------------------------------*/

/*//////////////////////////////////////////////////////////////////
[ FONT ]*/
/* Local Poppins files are Latin-only; Google Fonts "Poppins" in head.tag covers Cyrillic/Greek. */
@font-face {
	font-family: Poppins-Regular;
	src: url('../fonts/Poppins/Poppins-Regular.ttf');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: Poppins-Light;
	src: url('../fonts/Poppins/Poppins-Light.ttf');
}

@font-face {
	font-family: Poppins-ExtraLight;
	src: url('../fonts/Poppins/Poppins-ExtraLight.ttf');
}

@font-face {
	font-family: Poppins-Medium;
	src: url('../fonts/Poppins/Poppins-Medium.ttf');
}

@font-face {
	font-family: Poppins-Italic;
	src: url('../fonts/Poppins/Poppins-Italic.ttf');
}

@font-face {
	font-family: Poppins-Bold;
	src: url('../fonts/Poppins/Poppins-Bold.ttf');
}

@font-face {
	font-family: Poppins-SemiBold;
	src: url('../fonts/Poppins/Poppins-SemiBold.ttf');
}

/*---------------------------------------------*/
@font-face {
	font-family: PlayfairDisplay-Regular;
	src: url('../fonts/PlayfairDisplay/PlayfairDisplay-Regular.ttf');
}

@font-face {
	font-family: PlayfairDisplay-Bold;
	src: url('../fonts/PlayfairDisplay/PlayfairDisplay-Bold.ttf');
}

/*---------------------------------------------*/
@font-face {
	font-family: Montserrat-Regular;
	src: url('../fonts/Montserrat/Montserrat-Regular.ttf');
}

@font-face {
	font-family: Montserrat-Bold;
	src: url('../fonts/Montserrat/Montserrat-Bold.ttf');
}

/*//////////////////////////////////////////////////////////////////
[ RS PLUGIN ]*/

/*------------------------------------------------------------------
[ Bootstrap ]*/
.container {
	max-width: 1380px;
}

@media ( max-width : 1600px) {
	.container {
		max-width: 1200px;
	}
}

/*------------------------------------------------------------------
[ Slick2 ]*/
.slick-slide {
	outline: none !important;
}

/*//////////////////////////////////////////////////////////////////
[ LOADDING ]*/
.animsition-loading-1 {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.loader05 {
	width: 56px;
	height: 56px;
	border: 4px solid var(--primary-color);
	border-radius: 50%;
	position: relative;
	animation: loader-scale 1s ease-out infinite;
	top: 50%;
	margin: -28px auto 0 auto;
}

@keyframes loader-scale {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/*//////////////////////////////////////////////////////////////////
[ BUTTON BACK TO TOP ]*/
.btn-back-to-top {
	display: none;
	position: fixed;
	width: 48px;
	height: 48px;
	bottom: calc(20px + env(safe-area-inset-bottom, 0px));
	right: calc(20px + env(safe-area-inset-right, 0px));
	background-color: #fff;
	border: 2px solid color-mix(in srgb, var(--primary-color, #222) 18%, #ffffff);
	border-radius: 50%;
	opacity: 1;
	justify-content: center;
	align-items: center;
	z-index: 1050;
	cursor: pointer;
	box-shadow:
		0 4px 14px rgba(15, 23, 42, 0.22),
		0 0 0 1px rgba(15, 23, 42, 0.06);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
	-webkit-transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
	-o-transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
	-moz-transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.symbol-btn-back-to-top {
	font-size: 26px;
	color: var(--primary-color, #222);
	line-height: 1;
}

.btn-back-to-top:hover,
.btn-back-to-top:focus-visible {
	background-color: var(--primary-color, #222);
	border-color: var(--primary-color, #222);
	box-shadow:
		0 6px 20px rgba(15, 23, 42, 0.28),
		0 0 0 1px rgba(15, 23, 42, 0.08);
	transform: translateY(-2px);
}

.btn-back-to-top:hover .symbol-btn-back-to-top,
.btn-back-to-top:focus-visible .symbol-btn-back-to-top {
	color: var(--on-primary, #ffffff);
}

.btn-back-to-top:focus-visible {
	outline: 2px solid color-mix(in srgb, var(--primary-color, #222) 55%, #ffffff);
	outline-offset: 3px;
}

@media ( max-width : 575px) {
	.btn-back-to-top {
		width: 44px;
		height: 44px;
		bottom: calc(16px + env(safe-area-inset-bottom, 0px));
		right: calc(16px + env(safe-area-inset-right, 0px));
	}

	.symbol-btn-back-to-top {
		font-size: 24px;
	}
}

/*//////////////////////////////////////////////////////////////////
[ Header ]*/

/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
[ Header Desktop ]*/
.container-menu-desktop {
	height: auto;
	width: 100%;
	position: relative;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.header-v2 .container-menu-desktop {
	height: 84px;
}

.header-v3 .container-menu-desktop {
	height: auto;
}

.header-v4 .container-menu-desktop {
	height: 124px;
}

/*==================================================================
[ Top bar ]*/
/* Top-bar sol: tek mesaj, 4s + yatay kayma (soldan hizalı), 1→…→4→1 (siteTopMarquee.tag) */
.top-bar .top-bar-announcement-rotator {
	flex: 1;
	min-width: 0;
	margin-right: 10px;
	display: flex;
	align-items: center;
	height: 100%;
	overflow: hidden;
}

.top-bar-announcement-rotator__viewport {
	overflow: hidden;
	width: 100%;
	height: 40px;
}

.top-bar-announcement-rotator__track {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: stretch;
	transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: transform;
}

.top-bar-announcement-rotator__slide {
	flex: 0 0 100%;
	width: 100%;
	min-width: 100%;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 0 12px 0 0;
	box-sizing: border-box;
}

.top-bar-announcement-rotator__text {
	margin: 0;
	width: 100%;
	max-width: 100%;
	font-family: var(--main-font);
	font-size: 12px;
	line-height: 1.35;
	font-weight: 600;
	letter-spacing: 0.1px;
	text-align: left;
	color: var(--on-primary, #ffffff);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
	.top-bar-announcement-rotator__track {
		transition: none;
		transform: none !important;
	}

	.top-bar-announcement-rotator__slide ~ .top-bar-announcement-rotator__slide {
		display: none;
	}

	.top-bar-announcement-rotator__viewport {
		height: auto;
		min-height: 40px;
	}

	.top-bar-announcement-rotator__slide {
		height: auto;
		min-height: 40px;
		flex: 0 0 100%;
		min-width: 100%;
		padding: 6px 12px 6px 0;
	}
}

/* Mobil: duyuru + header akışta; scroll ile birlikte kayar (menü açıkken JS: fixed) */
.header-mobile-stack {
	display: none;
	width: 100%;
}

.header-mobile-spacer {
	display: none;
	width: 100%;
	pointer-events: none;
}

.mobile-top-bar-announcement {
	display: none;
	position: relative;
	background-color: var(--primary-color, #222);
	width: 100%;
	min-height: 36px;
	align-items: center;
	padding: 4px 0;
	z-index: 1;
}

.mobile-top-bar-announcement .top-bar-announcement-rotator {
	margin-right: 0;
	flex: 1;
	min-width: 0;
}

.mobile-top-bar-announcement .top-bar-announcement-rotator__slide {
	justify-content: center;
	padding: 0 12px;
}

.mobile-top-bar-announcement .top-bar-announcement-rotator__text {
	text-align: center;
}

@media (prefers-reduced-motion: reduce) {
	.mobile-top-bar-announcement .top-bar-announcement-rotator__slide {
		padding: 6px 12px;
	}
}

.top-bar {
	height: 40px;
	background-color: var(--primary-color, #222);
}

.top-bar .content-topbar {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: nowrap;
	width: 100%;
}

.top-bar .content-topbar .top-bar-actions {
	flex-shrink: 0;
	margin-left: auto;
}

/*---------------------------------------------*/
.left-top-bar {
	font-family: var(--main-font);
	font-size: 12px;
	font-weight: 600;
	line-height: 1.8;
	color: var(--on-primary, #ffffff);
}

/*---------------------------------------------*/
.right-top-bar a {
	font-family: var(--main-font);
	font-size: 12px;
	font-weight: 600;
	line-height: 1.8;
	height: 100%;
	color: var(--on-primary, #ffffff);
	border-right: 1px solid var(--on-primary-divider, rgba(255, 255, 255, 0.3));
}

.right-top-bar a:first-child {
	border-left: 1px solid var(--on-primary-divider, rgba(255, 255, 255, 0.3));
}

.right-top-bar a:hover {
	color: var(--on-primary, #ffffff);
}

.header-account-entry {
	display: inline-flex !important;
	align-items: center;
	gap: 0.15rem;
}

.header-account-entry__name {
	max-width: 12rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.header-topbar-logout {
	gap: 7px;
}

.header-topbar-logout__icon {
	font-size: 15px;
	line-height: 1;
	opacity: 0.92;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.header-topbar-logout:hover .header-topbar-logout__icon,
.header-topbar-logout:focus-visible .header-topbar-logout__icon {
	opacity: 1;
	transform: translateX(1px);
}

.sale-request-alert-icon {
	font-size: 0.95rem;
	color: #ffd166;
	animation: saleRequestAlertIconBlink 1.15s ease-in-out infinite;
}

@keyframes saleRequestAlertIconBlink {
	0%, 100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.2;
		transform: scale(0.88);
	}
}

.mobile-topbar-account__link .sale-request-alert-icon {
	margin-left: 0.35rem;
	flex-shrink: 0;
	color: var(--primary-color, #717fe0);
}

.main-menu > li:hover > a {
    color: var(--secondary-color);
}

/* Mobile menu topbar — see [ Menu mobile ] section below */

/*==================================================================
[ Menu ]*/
.wrap-menu-desktop {
	position: fixed;
	z-index: 1100;
	background-color: #fff;
	width: 100%;
	height: 84px;
	top: 40px;
	left: 0px;
	box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
	-webkit-transition: height 0.3s, background-color 0.3s;
	-o-transition: height 0.3s, background-color 0.3s;
	-moz-transition: height 0.3s, background-color 0.3s;
	transition: height 0.3s, background-color 0.3s;
}

.header-v2 .wrap-menu-desktop {
	background-color: #fff;
	top: 0;
}

.header-v3 .wrap-menu-desktop {
	background-color: transparent;
	top: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-v4 .wrap-menu-desktop {
	background-color: #fff;
}

/*---------------------------------------------*/
.limiter-menu-desktop {
	height: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	background-color: transparent;
}

/*------------------------------------------------------------------
[ Logo ]*/
.logo {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	height: 78%;
	max-height: 58px;
	margin-right: 55px;
}

.logo img {
	max-width: min(260px, 30vw);
	width: auto;
	height: auto;
	max-height: 52px;
	object-fit: contain;
	object-position: left center;
}

/*------------------------------------------------------------------
[ Menu ]*/
.menu-desktop {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	height: 100%;
}

.main-menu {
	list-style-type: none;
	margin: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
}

.main-menu>li {
	display: block;
	position: relative;
	padding: 20px 10px 20px 0px;
	margin: 0px 4px 0px 14px;
}

.main-menu>li>a {
	font-family: var(--main-font);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.15px;
	color: #333;
	padding: 5px 0px;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
}

.header-v3 .main-menu>li>a {
	color: #fff;
}

/* Header icon font lock to prevent inheritance breakage */
header .fa,
header .fa::before {
	font-family: FontAwesome !important;
	font-weight: normal !important;
	font-style: normal;
}

header .zmdi,
header .zmdi::before {
	font-family: Material-Design-Iconic-Font !important;
	font-style: normal;
}

/*---------------------------------------------*/
.sub-menu {
	list-style-type: none;
	position: absolute;
	top: 0;
	left: 100%;
	min-width: 198px;
	max-width: 260px;
	background-color: #fff;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	padding: 10px 0;
	border-radius: 12px;
	border: 1px solid #eceff5;
	box-shadow: 0 12px 28px rgba(17, 24, 39, 0.12);
	-moz-box-shadow: 0 12px 28px rgba(17, 24, 39, 0.12);
	-webkit-box-shadow: 0 12px 28px rgba(17, 24, 39, 0.12);
	-o-box-shadow: 0 12px 28px rgba(17, 24, 39, 0.12);
	-ms-box-shadow: 0 12px 28px rgba(17, 24, 39, 0.12);
	visibility: hidden;
	opacity: 0;
}

.sub-menu li {
	position: relative;
	background-color: transparent;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
}

.main-menu>li>.sub-menu {
	top: 100%;
	left: 0;
}

.sub-menu a {
	font-family: var(--main-font);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.5;
	color: #555;
	display: block;
	padding: 9px 18px;
	width: 100%;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
}

/*---------------------------------------------*/
.main-menu>li:hover>a {
	text-decoration: none;
	color: var(--primary-color);
}

.main-menu>li:hover>.sub-menu {
	visibility: visible;
	opacity: 1;
}

.sub-menu li:hover>.sub-menu {
	visibility: visible;
	opacity: 1;
}

.sub-menu li:hover {
	background-color: transparent;
}

.sub-menu>li:hover>a {
	color: var(--primary-color);
	background: #f7f8fb;
	text-decoration: none;
}

@media ( max-width : 1300px) {
	.main-menu>.respon-sub-menu .sub-menu {
		right: 100%;
		left: auto;
	}
	.main-menu>.respon-sub-menu>.sub-menu {
		right: 0px;
		left: auto;
	}
}

/*------------------------------------------------------------------
[ Icon header ]*/
.wrap-icon-header {
	flex-grow: 1;
}

.icon-header-item {
	position: relative;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
}

/*---------------------------------------------*/
.icon-header-noti::after {
	content: attr(data-notify);
	font-family: Poppins-Regular;
	font-size: 12px;
	color: var(--on-primary, #ffffff);
	line-height: 15px;
	text-align: center;
	display: block;
	position: absolute;
	top: -7px;
	right: 0;
	min-width: 15px;
	height: 15px;
	padding: 0 3px;
	background-color: var(--primary-color);
}

/*---------------------------------------------*/
.wrap-header-mobile .wrap-icon-header {
	flex-grow: unset;
	margin-right: 8px !important;
	min-width: 0;
}

.wrap-header-mobile .wrap-icon-header .icon-header-item:last-child {
	padding-right: 4px !important;
}

/*------------------------------------------------------------------
[ Modal search ]*/
.modal-search-header {
	position: fixed;
	z-index: 2000;
	width: 100%;
	height: 100%;
	bottom: 101%;
	left: 0;
	background-color: rgba(255, 255, 255, 0.9);
	padding: 50px 15px 100px 15px;
}

.show-modal-search {
	bottom: 0;
}

.container-search-header {
	width: auto;
	max-width: 100%;
	position: relative;
}

/*---------------------------------------------*/
.btn-hide-modal-search {
	position: absolute;
	padding: 5px;
	right: 0;
	top: -45px;
	opacity: 0.8;
}

.btn-hide-modal-search:hover {
	opacity: 1;
}

.wrap-search-header {
	width: 960px;
	max-width: 100%;
	height: 120px;
	border: 2px solid #e6e6e6;
	background: #fff;
}

/*---------------------------------------------*/
.wrap-search-header input {
	font-family: Poppins-ExtraLight;
	font-size: 50px;
	line-height: 1.2;
	color: #333;
	padding: 0px 30px 0px 0px;
	width: calc(100% - 70px);
	height: 100%;
	background-color: transparent;
}

.wrap-search-header button {
	font-size: 50px;
	color: #333;
	width: 70px;
	height: 100%;
}

.wrap-search-header button:hover {
	color: #6c7ae0;
}

/*---------------------------------------------*/
@media ( max-width : 767px) {
	.wrap-search-header input, .wrap-search-header button {
		font-size: 30px;
	}
	.wrap-search-header {
		height: 90px;
	}
}

@media ( max-width : 575px) {
	.wrap-search-header input, .wrap-search-header button {
		font-size: 20px;
	}
	.wrap-search-header button {
		width: 40px;
	}
	.wrap-search-header {
		height: 80px;
	}
}

/*==================================================================
[ Fixed menu desktop ]*/
.fix-menu-desktop .wrap-menu-desktop {
	height: 70px;
	background-color: rgba(255, 255, 255, 1);
	box-shadow: 0 0px 3px 0px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0 0px 3px 0px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 0 0px 3px 0px rgba(0, 0, 0, 0.2);
	-o-box-shadow: 0 0px 3px 0px rgba(0, 0, 0, 0.2);
	-ms-box-shadow: 0 0px 3px 0px rgba(0, 0, 0, 0.2);
}

.header-v2 .fix-menu-desktop.container-menu-desktop {
	height: 70px;
}

.header-v3 .fix-menu-desktop .wrap-menu-desktop {
	background-color: #222;
	border-color: #222;
}

.header-v4 .fix-menu-desktop.container-menu-desktop {
	height: 110px;
}

/*---------------------------------------------*/
.main-menu>li.active-menu>a {
	color: #6c7ae0;
}

/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
[ Header Mobile ]*/
.wrap-header-mobile {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	height: 78px;
	max-width: 100%;
	background-color: #fff;
	padding: 9px 12px 9px 16px;
	display: none;
	box-shadow: 0 1px 0 rgba(15, 23, 42, 0.08);
}

/*------------------------------------------------------------------
[ Logo mobile ]*/
.logo-mobile {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	height: 100%;
	min-width: 0;
	padding-right: 10px;
	-webkit-flex-grow: 1;
	-moz-flex-grow: 1;
	flex-grow: 1;
}

.logo-mobile a {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	height: 100%;
	min-width: 0;
}

.logo-mobile img {
	position: static;
	width: auto;
	height: 48px;
	max-height: 48px;
	max-width: min(220px, 56vw);
	object-fit: contain;
	object-position: left center;
}

@media (max-width: 575px) {
	.logo-mobile img {
		height: 44px;
		max-height: 44px;
		max-width: min(200px, 52vw);
	}
}

/*------------------------------------------------------------------
[ btn show menu ]*/
.hamburger {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	padding: 0;
	-webkit-transform: scale(0.7);
	-moz-transform: scale(0.7);
	-ms-transform: scale(0.7);
	-o-transform: scale(0.7);
	transform: scale(0.7);
}

.hamburger:hover {
	opacity: 1;
}

/*---------------------------------------------*/
@media ( max-width : 991px) {
	html,
	body {
		overflow-x: clip;
		max-width: 100%;
		width: 100%;
	}

	body {
		position: relative;
	}

	.mobile-top-bar-announcement {
		display: flex;
		width: 100%;
		max-width: 100%;
		overflow-x: clip;
	}

	.mobile-top-bar-announcement .container {
		width: 100%;
		max-width: 100%;
		padding-left: 0;
		padding-right: 0;
		margin-left: 0;
		margin-right: 0;
	}

	.header-mobile-stack {
		display: block;
		width: 100%;
		max-width: 100%;
		overflow-x: clip;
	}

	.header-mobile-spacer {
		display: none;
		width: 100%;
		pointer-events: none;
	}

	.header-mobile-spacer.is-menu-spacer {
		display: block;
	}

	.menu-mobile {
		display: block;
		position: fixed;
		inset: 0;
		z-index: 1090;
		visibility: hidden;
		pointer-events: none;
	}

	.menu-mobile.is-open {
		visibility: visible;
		pointer-events: auto;
	}

	.header-mobile-stack.is-menu-open {
		position: fixed;
		top: var(--mobile-menu-header-top, 0);
		left: 0;
		right: 0;
		z-index: 1101;
		background-color: #fff;
		box-shadow: 0 1px 0 rgba(15, 23, 42, 0.08);
	}

	.menu-mobile__backdrop {
		position: fixed;
		top: var(--mobile-menu-top, var(--mobile-header-offset, 78px));
		left: 0;
		right: 0;
		bottom: 0;
		background: rgba(15, 23, 42, 0.32);
		-webkit-backdrop-filter: blur(8px);
		backdrop-filter: blur(8px);
		opacity: 0;
		transition: opacity 0.32s cubic-bezier(0.22, 1, 0.36, 1);
		will-change: opacity;
	}

	.menu-mobile.is-open .menu-mobile__backdrop {
		opacity: 1;
	}

	.menu-mobile__panel {
		position: fixed;
		top: var(--mobile-menu-top, var(--mobile-header-offset, 78px));
		left: 0;
		right: 0;
		max-height: calc(100dvh - var(--mobile-menu-top, var(--mobile-header-offset, 78px)));
		overflow-x: clip;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		background: #ffffff;
		box-shadow: 0 10px 28px -6px rgba(15, 23, 42, 0.12);
		opacity: 0;
		transition: opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1);
		will-change: opacity;
	}

	.menu-mobile.is-open .menu-mobile__panel {
		opacity: 1;
	}

	.wrap-header-mobile {
		display: -webkit-box;
		display: -webkit-flex;
		display: -moz-box;
		display: -ms-flexbox;
		display: flex;
	}

	.container-menu-desktop {
		display: none;
	}
}

/*==================================================================
[ Menu mobile ]*/
.menu-mobile {
	width: 100%;
	max-width: 100%;
	background: transparent;
	border-top: 0;
	box-shadow: none;
	--mm-surface: #ffffff;
	--mm-track: #f2f3f7;
	--mm-tint-track: color-mix(in srgb, var(--primary-color, #717fe0) 5%, #f2f3f7);
	--mm-tint-chip: color-mix(in srgb, var(--primary-color, #717fe0) 7%, #ffffff);
	--mm-tint-chip-text: color-mix(in srgb, var(--primary-color, #717fe0) 42%, #6b7280);
	--mm-ink: #111827;
	--mm-ink-muted: #6b7280;
	--mm-pill-radius: 999px;
	--mm-elev-soft: 0 2px 10px rgba(15, 23, 42, 0.06);
	--mm-elev-lift: 0 8px 22px rgba(15, 23, 42, 0.1);
	--mm-pill-shadow-active: 0 8px 22px color-mix(in srgb, var(--primary-color, #717fe0) 32%, transparent);
	--mm-space-item: 10px;
	--mm-space-group: 16px;
	--mm-space-section: 20px;
	--mm-control-h: 52px;
	--mm-control-h-sm: 44px;
}

.menu-mobile__panel {
	background: transparent;
	margin: 0;
	padding: var(--mm-space-group) 18px var(--mm-space-section);
	border: 0;
	border-radius: 0;
	box-shadow: none;
	overflow: visible;
}

@media (max-width: 991px) {
	.menu-mobile__panel {
		overflow-x: clip;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		background: #ffffff;
		box-shadow: 0 10px 28px -6px rgba(15, 23, 42, 0.12);
	}
}

.header-inline-search {
	display: none;
	background: transparent;
	border: 0;
	padding: 6px 0;
}

.header-inline-search.show-inline-search {
	display: block;
}

.header-inline-search .header-inline-search-form {
	width: 100%;
	max-width: 100%;
	height: 64px;
	border: 0;
	background: transparent;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
}

.header-inline-search .header-inline-search-input {
	font-family: var(--main-font);
	font-size: 18px;
	color: #2b2f38;
	flex: 1 1 auto;
	height: 100%;
	background: #fff;
	padding: 0 14px;
	min-width: 0;
	border: 0;
	border-radius: 12px 0 0 12px;
	outline: none;
}

.header-inline-search .header-inline-search-submit {
	width: 48px;
	height: 48px;
	margin-right: 6px;
	border-radius: 12px;
	background: var(--primary-color);
	color: #111 !important;
	border: 0;
	box-shadow: 0 8px 18px rgba(180, 138, 10, 0.28);
}

.header-inline-search .header-inline-search-submit i {
	font-size: 22px;
	line-height: 1;
	color: #111 !important;
}

.header-inline-search .header-inline-search-input::placeholder {
	color: #8a909d;
}

@media ( min-width : 992px) {
	.header-inline-search {
		position: fixed;
		top: 124px;
		left: 0;
		right: 0;
		z-index: 1190;
		border-top: 0;
		background: transparent;
		box-shadow: none;
		padding: 8px 0 0;
	}
	.fix-menu-desktop ~ .header-inline-search {
		top: 70px;
	}
	.header-inline-search .container {
		display: flex;
		justify-content: flex-end;
	}
	.header-inline-search .header-inline-search-form {
		height: 54px;
		width: min(460px, 100%);
		background: #fff;
		border: 1px solid #e9ecf3;
		border-radius: 12px;
		box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
	}
	.header-inline-search .header-inline-search-input {
		font-size: 16px;
		border-radius: 10px 0 0 10px;
	}
}

@media ( max-width : 767px) {
	.header-inline-search {
		position: fixed;
		top: 108px;
		left: 0;
		right: 0;
		z-index: 1185;
		box-shadow: none;
		background: transparent;
		padding: 6px 0;
	}
	.header-inline-search .header-inline-search-form {
		height: 56px;
		border-radius: 10px;
		border: 1px solid #e9ecf3;
		background: #fff;
		box-shadow: 0 10px 22px rgba(17, 24, 39, 0.1);
	}
	.header-inline-search .header-inline-search-input {
		font-size: 16px;
	}
	.header-inline-search .header-inline-search-submit {
		width: 42px;
		height: 42px;
		margin-right: 7px;
		border-radius: 10px;
	}
}

.search-results-page .search-results-toolbar {
	max-width: 980px;
	margin: 0 auto;
}

@media ( min-width : 992px) {
	.search-results-page {
		padding-top: 72px !important;
	}
}

.search-results-page .search-results-form {
	width: 100%;
	height: 62px;
	border: 1px solid #e3e8f2;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
}

.search-results-page .search-results-form input {
	font-family: var(--main-font);
	font-size: 17px;
	color: #2a2f39;
	flex: 1 1 auto;
	padding: 0 14px;
	min-width: 0;
}

.search-results-page .search-results-form .search-results-submit {
	width: 50px;
	height: 50px;
	margin-right: 6px;
	border-radius: 12px;
	background: var(--primary-color);
	color: #111 !important;
	border: 0;
	box-shadow: 0 8px 18px rgba(180, 138, 10, 0.28);
}

.search-results-page .search-results-form .search-results-submit i {
	font-size: 22px;
	line-height: 1;
	color: #111 !important;
}

.search-input-error {
	border-color: var(--primary-color, #717fe0) !important;
}

.search-form-error {
	border-color: var(--primary-color, #717fe0) !important;
	box-shadow: 0 10px 24px color-mix(in srgb, var(--primary-color, #717fe0) 22%, transparent) !important;
}

.search-results-page .search-results-meta {
	margin-top: 10px;
	font-family: var(--main-font);
	font-size: 14px;
	font-weight: 500;
	color: #636b79;
	text-align: center;
}

.search-results-page .search-filters-hidden {
	display: none;
}

body.search-page .js-toggle-inline-search {
	pointer-events: none;
	opacity: 0.45;
}

body.search-page .filter-tope-group,
body.search-page .search-filters-hidden {
	display: none !important;
}

@media (max-width: 767px) {
	.search-results-page .search-results-form {
		height: 52px;
		border-radius: 13px;
	}
	.search-results-page .search-results-form input {
		font-size: 15px;
		padding: 0 10px;
	}
	.search-results-page .search-results-form .search-results-submit {
		width: 42px;
		height: 42px;
		margin-right: 6px;
		border-radius: 10px;
	}
	.search-results-page .search-results-form .search-results-submit i {
		font-size: 20px;
	}
	.search-results-page .search-results-meta {
		font-size: 13px;
		margin-top: 8px;
	}
}

.topbar-mobile {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: var(--mm-space-group);
}

.topbar-mobile li {
	padding: 0;
	margin: 0;
	list-style: none;
}

.mobile-topbar-row {
	padding: 0;
}

.mobile-topbar-row--account {
	padding-bottom: 0;
}

.mobile-topbar-row--prefs {
	padding: 0;
}

.mobile-topbar-prefs {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	min-width: 0;
	gap: var(--mm-space-item);
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.mobile-topbar-account {
	display: flex;
	align-items: stretch;
	gap: var(--mm-space-item);
	min-width: 0;
	width: 100%;
}

.mobile-topbar-account__link,
.mobile-topbar-account__login {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	align-items: center;
	gap: 8px;
	min-height: 46px;
	padding: 0 18px;
	border-radius: var(--mm-pill-radius);
	background: var(--mm-track);
	border: 0;
	box-shadow: var(--mm-elev-soft);
	color: var(--mm-ink) !important;
	font-family: var(--main-font);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: box-shadow 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.mobile-topbar-account__login {
	justify-content: center;
	width: 100%;
}

.mobile-menu-cta--primary.mobile-topbar-account__login,
.mobile-menu-cta--primary.mobile-topbar-account__link {
	min-height: var(--mm-control-h);
	padding: 0 22px;
	background: linear-gradient(
		135deg,
		color-mix(in srgb, var(--primary-color, #717fe0) 82%, #ffffff),
		var(--primary-color, #717fe0)
	);
	color: var(--on-primary, #ffffff) !important;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.02em;
	box-shadow:
		var(--mm-pill-shadow-active),
		inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.mobile-menu-cta--primary.mobile-topbar-account__link {
	justify-content: flex-start;
}

.mobile-menu-cta--primary.mobile-topbar-account__link i {
	color: rgba(255, 255, 255, 0.9);
	font-size: 15px;
}

.mobile-menu-cta--primary.mobile-topbar-account__link .sale-request-alert-icon {
	color: #ffffff !important;
}

.mobile-menu-cta--primary.mobile-topbar-account__login:hover,
.mobile-menu-cta--primary.mobile-topbar-account__login:focus,
.mobile-menu-cta--primary.mobile-topbar-account__link:hover,
.mobile-menu-cta--primary.mobile-topbar-account__link:focus {
	color: var(--on-primary, #ffffff) !important;
	box-shadow:
		0 10px 26px color-mix(in srgb, var(--primary-color, #717fe0) 38%, transparent),
		inset 0 1px 0 rgba(255, 255, 255, 0.28);
	transform: translateY(-1px);
}

.mobile-menu-cta--primary.mobile-topbar-account__login:active,
.mobile-menu-cta--primary.mobile-topbar-account__link:active {
	background: linear-gradient(
		135deg,
		color-mix(in srgb, var(--primary-color, #717fe0) 92%, #000000),
		color-mix(in srgb, var(--primary-color, #717fe0) 88%, #000000)
	);
	color: var(--on-primary, #ffffff) !important;
	transform: translateY(0);
}

.mobile-menu-cta--logout.mobile-topbar-account__logout {
	flex: 0 0 var(--mm-control-h);
	width: var(--mm-control-h);
	min-height: var(--mm-control-h);
	background: linear-gradient(
		180deg,
		#ffffff 0%,
		color-mix(in srgb, var(--primary-color, #717fe0) 5%, #ffffff) 100%
	);
	border: 1.5px solid color-mix(in srgb, var(--primary-color, #717fe0) 32%, #e5e7eb);
	color: color-mix(in srgb, var(--primary-color, #717fe0) 82%, var(--mm-ink)) !important;
	box-shadow: var(--mm-elev-lift);
}

.mobile-menu-cta--logout.mobile-topbar-account__logout:hover,
.mobile-menu-cta--logout.mobile-topbar-account__logout:focus {
	border-color: color-mix(in srgb, var(--primary-color, #717fe0) 48%, #e5e7eb);
	color: color-mix(in srgb, var(--primary-color, #717fe0) 92%, var(--mm-ink)) !important;
	box-shadow:
		0 10px 24px rgba(15, 23, 42, 0.1),
		0 0 0 1px color-mix(in srgb, var(--primary-color, #717fe0) 12%, transparent);
	transform: translateY(-1px);
}

.mobile-menu-cta--logout.mobile-topbar-account__logout:active {
	background: color-mix(in srgb, var(--primary-color, #717fe0) 10%, #ffffff);
	transform: translateY(0);
}

.main-menu-m > li.mobile-menu-cta-row {
	margin-top: 0;
	padding-top: var(--mm-space-section);
}

.main-menu-m > li.mobile-menu-cta-row > .mobile-menu-cta--outline {
	justify-content: center;
	min-height: var(--mm-control-h);
	padding: 0 22px;
	background: linear-gradient(
		180deg,
		#ffffff 0%,
		color-mix(in srgb, var(--primary-color, #717fe0) 5%, #ffffff) 100%
	);
	border: 1.5px solid color-mix(in srgb, var(--primary-color, #717fe0) 32%, #e5e7eb);
	color: color-mix(in srgb, var(--primary-color, #717fe0) 78%, var(--mm-ink)) !important;
	font-weight: 700;
	letter-spacing: 0.02em;
	box-shadow: var(--mm-elev-lift);
}

.main-menu-m > li.mobile-menu-cta-row > .mobile-menu-cta--outline:hover,
.main-menu-m > li.mobile-menu-cta-row > .mobile-menu-cta--outline:focus {
	background: linear-gradient(
		180deg,
		#ffffff 0%,
		color-mix(in srgb, var(--primary-color, #717fe0) 9%, #ffffff) 100%
	);
	border-color: color-mix(in srgb, var(--primary-color, #717fe0) 48%, #e5e7eb);
	color: color-mix(in srgb, var(--primary-color, #717fe0) 88%, var(--mm-ink)) !important;
	box-shadow:
		0 10px 24px rgba(15, 23, 42, 0.1),
		0 0 0 1px color-mix(in srgb, var(--primary-color, #717fe0) 12%, transparent);
}

.main-menu-m > li.mobile-menu-cta-row > .mobile-menu-cta--outline:active {
	background: color-mix(in srgb, var(--primary-color, #717fe0) 10%, #ffffff);
}

.mobile-topbar-account__link i {
	flex-shrink: 0;
	font-size: 14px;
	color: var(--mm-ink-muted);
}

.mobile-user-name {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.mobile-topbar-account__logout {
	flex: 0 0 46px;
	width: 46px;
	min-height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--mm-pill-radius);
	border: 0;
	background: var(--mm-track);
	box-shadow: var(--mm-elev-soft);
	color: var(--mm-ink) !important;
	text-decoration: none;
	transition: box-shadow 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.mobile-topbar-account__logout .zmdi {
	font-size: 18px;
	line-height: 1;
}

.mobile-topbar-langs {
	display: flex;
	align-items: center;
	flex: 1 1 auto;
	min-width: 0;
	max-width: 100%;
	min-height: var(--mm-control-h-sm);
	gap: 4px;
	padding: 6px;
	border: 1px solid color-mix(in srgb, var(--primary-color, #717fe0) 7%, #e8eaef);
	border-radius: var(--mm-pill-radius);
	background: var(--mm-tint-track);
	box-shadow: var(--mm-elev-soft);
	overflow-x: auto;
	overflow-y: hidden;
	flex-wrap: nowrap;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.mobile-topbar-langs::-webkit-scrollbar {
	display: none;
}

.mobile-topbar-currency {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	margin-left: 0;
	min-height: var(--mm-control-h-sm);
	gap: 4px;
	padding: 6px;
	border: 1px solid color-mix(in srgb, var(--primary-color, #717fe0) 7%, #e8eaef);
	border-radius: var(--mm-pill-radius);
	background: var(--mm-tint-track);
	box-shadow: var(--mm-elev-soft);
}

.mobile-topbar-langs__chip,
.mobile-topbar-currency__chip {
	flex: 0 0 auto;
	min-width: 36px;
	height: 32px;
	padding: 0 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--mm-pill-radius);
	font-family: var(--main-font);
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	color: var(--mm-tint-chip-text) !important;
	text-decoration: none;
	border: 0;
	background: var(--mm-tint-chip);
	white-space: nowrap;
	transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.mobile-topbar-currency__chip {
	min-width: 44px;
	height: 36px;
	padding: 0 14px;
	font-size: 13px;
}

.mobile-topbar-langs__chip.is-active,
.mobile-topbar-currency__chip.is-active {
	background: var(--primary-color, #717fe0);
	color: #ffffff !important;
	font-weight: 700;
	box-shadow: var(--mm-pill-shadow-active);
}

.main-menu-m {
	list-style: none;
	margin: 0;
	padding: var(--mm-space-section) 0 0;
}

.main-menu-m > li {
	position: relative;
	border-bottom: 0;
	margin-bottom: var(--mm-space-item);
	background: transparent;
}

.main-menu-m > li:last-child {
	margin-bottom: 0;
}

.main-menu-m__row {
	display: flex;
	align-items: stretch;
	min-height: var(--mm-control-h-sm);
	border-radius: var(--mm-pill-radius);
	border: 1px solid color-mix(in srgb, var(--primary-color, #717fe0) 5%, transparent);
	background: var(--mm-track);
	box-shadow: var(--mm-elev-soft);
	overflow: hidden;
	transition: box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.main-menu-m__link {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	align-items: center;
	padding: 13px 18px;
	font-family: var(--main-font);
	font-size: 15px;
	font-weight: 600;
	color: var(--mm-ink) !important;
	text-decoration: none;
	text-align: left;
	letter-spacing: 0.01em;
	transition: background 0.2s ease;
}

.main-menu-m > li:not(.has-submenu) > .main-menu-m__link {
	width: 100%;
	min-height: var(--mm-control-h-sm);
	border-radius: var(--mm-pill-radius);
	border: 1px solid color-mix(in srgb, var(--primary-color, #717fe0) 5%, transparent);
	background: var(--mm-track);
	box-shadow: var(--mm-elev-soft);
	transition: box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.main-menu-m__link:active,
.sub-menu-m a:active,
.mobile-topbar-account__link:active,
.mobile-topbar-account__logout:active,
.mobile-topbar-account__login:active {
	background: color-mix(in srgb, var(--primary-color, #717fe0) 8%, #ffffff);
}

.arrow-main-menu-m {
	flex: 0 0 48px;
	width: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0;
	background: color-mix(in srgb, var(--primary-color, #717fe0) 6%, var(--mm-track));
	color: var(--mm-ink-muted);
	cursor: pointer;
	padding: 0;
	-webkit-tap-highlight-color: transparent;
	transition: background 0.2s ease, color 0.2s ease;
}

.arrow-main-menu-m i {
	font-size: 16px;
	line-height: 1;
	transition: transform 0.22s ease, color 0.22s ease;
}

.main-menu-m > li.is-submenu-open > .main-menu-m__row .arrow-main-menu-m i,
.arrow-main-menu-m.turn-arrow-main-menu-m i {
	transform: rotate(90deg);
	color: var(--primary-color, #717fe0);
}

.main-menu-m > li.is-submenu-open > .main-menu-m__row {
	background: color-mix(in srgb, var(--primary-color, #717fe0) 7%, var(--mm-track));
	box-shadow: var(--mm-pill-shadow-active);
}

.sub-menu-m {
	list-style: none;
	margin: 6px 0 0;
	padding: 0 0 0 10px;
	display: none;
	background: transparent;
}

.main-menu-m > li.is-submenu-open > .sub-menu-m {
	display: block;
}

.sub-menu-m li {
	border-top: 0;
	margin-bottom: 6px;
}

.sub-menu-m li:last-child {
	margin-bottom: 0;
}

.sub-menu-m a {
	display: flex;
	align-items: center;
	min-height: 42px;
	padding: 10px 16px;
	font-family: var(--main-font);
	font-size: 14px;
	font-weight: 500;
	color: var(--mm-ink-muted) !important;
	text-decoration: none;
	border-radius: var(--mm-pill-radius);
	border: 0;
	background: #ffffff;
	box-shadow: var(--mm-elev-soft);
	transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.sub-menu-m a:hover,
.sub-menu-m a:focus {
	color: var(--mm-ink) !important;
	background: color-mix(in srgb, var(--primary-color, #717fe0) 6%, #ffffff);
	box-shadow: var(--mm-elev-lift);
}

@media ( min-width : 992px) {
	.menu-mobile {
		display: none !important;
	}
}

@media (max-width: 991px) and (prefers-reduced-motion: reduce) {
	.menu-mobile__backdrop,
	.menu-mobile__panel {
		transition: none;
		transform: none;
	}
}

/*//////////////////////////////////////////////////////////////////
[ Sidebar ]*/
.wrap-sidebar {
	position: fixed;
	z-index: 1100;
	width: 100%;
	height: 100vh;
	top: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.0);
	visibility: hidden;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
}

.sidebar {
	position: fixed;
	z-index: 1100;
	width: 390px;
	max-width: calc(100% - 30px);
	height: 100vh;
	top: 0;
	right: -400px;
	background-color: #fff;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.34;
	transition: all 0.4s;
	box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.18);
	-moz-box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.18);
	-webkit-box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.18);
	-o-box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.18);
	-ms-box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.18);
}

.show-sidebar {
	visibility: visible;
	background-color: rgba(0, 0, 0, 0.6);
}

.show-sidebar .sidebar {
	right: 0;
}

@media ( max-width : 991px) {
	.wrap-sidebar {
		display: none;
	}
}

/*---------------------------------------------*/
.sidebar-content {
	flex-grow: 1;
	overflow: auto;
	align-content: space-between;
}

/*---------------------------------------------*/
.wrap-item-gallery {
	width: calc(( 100% - 20px)/3);
}

.item-gallery {
	display: block;
	width: 100%;
	padding-top: 100%;
	position: relative;
}

.item-gallery::after {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(103, 117, 214, 0.8);
	opacity: 0;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.34;
	transition: all 0.4s;
}

.item-gallery:hover:after {
	opacity: 1;
}

/*//////////////////////////////////////////////////////////////////
[ Header cart ]*/
.wrap-header-cart {
	position: fixed;
	z-index: 1100;
	width: 100%;
	height: 100vh;
	top: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.0);
	visibility: hidden;
	pointer-events: none;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
}

.header-cart {
	position: fixed;
	z-index: 1100;
	width: 400px;
	max-width: calc(100% - 30px);
	height: 100vh;
	top: 0;
	right: -400px;
	background-color: #fff;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.34;
	transition: all 0.4s;
	box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.18);
	-moz-box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.18);
	-webkit-box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.18);
	-o-box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.18);
	-ms-box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.18);
}

.header-cart::after {
	content: "";
	display: block;
	width: 100%;
	height: 9%;
	min-height: 30px;
}

.show-header-cart {
	visibility: visible;
	pointer-events: auto;
	background-color: rgba(0, 0, 0, 0.6);
}

body.cart-drawer-open .btn-back-to-top,
body.wishlist-drawer-open .btn-back-to-top {
	display: none !important;
	visibility: hidden;
	pointer-events: none;
}

.show-header-cart .header-cart {
	right: 0;
}

/*---------------------------------------------*/
.header-cart-title {
	width: 260px;
	max-width: 100%;
	height: 16.5%;
	min-height: 85px;
}

/* Legacy class; mini cart / wishlist drawer body */
.header-cart-content,
.js-panel-cart .mini-drawer-body,
.js-panel-wishlist .mini-drawer-body {
	flex-grow: 1;
	overflow: hidden;
	align-content: space-between;
	min-height: 0;
}

.header-cart-wrapitem {
	flex-grow: 1;
}

/*---------------------------------------------*/
.header-cart-item-img {
	width: 60px;
	position: relative;
	margin-right: 20px;
	cursor: pointer;
}

.header-cart-item-img img {
	width: 100%;
}

.header-cart-item-img::after {
	content: '\e870';
	font-family: Linearicons-Free;
	font-size: 16px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.5);
	color: #fff;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	-moz-transition: all 0.3s;
	opacity: 0;
}

.header-cart-item-img:hover:after {
	opacity: 1;
}

/*---------------------------------------------*/
.header-cart-item-txt {
	width: calc(100% - 80px);
}

.header-cart-item-name {
	display: block;
	font-family: Poppins-Regular;
	font-size: 14px;
	color: #555;
	line-height: 1.3;
}

.header-cart-item-info {
	display: block;
	font-family: Poppins-Regular;
	font-size: 14px;
	color: #888;
	line-height: 1.5;
}

.header-cart-total {
	font-family: var(--main-font, Poppins, sans-serif);
	font-size: 14px;
	font-weight: 600;
	color: #222;
	line-height: 1.3;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.header-cart-total .ecom-price {
	font-weight: 600;
}

/*---------------------------------------------*/
@media ( max-width : 575px) {
	.header-cart:not(.mini-drawer-panel) {
		padding: 30px;
	}
	.header-cart:not(.mini-drawer-panel) .header-cart-title {
		padding-bottom: 35px;
	}
}

/*//////////////////////////////////////////////////////////////////
[ Restyle Select2 ]*/
.rs1-select2 .select2-container {
	display: block;
	max-width: 100% !important;
	width: auto !important;
}

.rs1-select2 .select2-container .select2-selection--single {
	height: 45px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	border: none;
	outline: none;
	background-color: transparent;
	border-radius: 0px;
	position: relative;
}

/*------------------------------------------------------------------
[ in select ]*/
.rs1-select2 .select2-container .select2-selection--single .select2-selection__rendered
	{
	font-family: Poppins-Regular;
	font-size: 13px;
	color: #555;
	line-height: 1.2;
	padding-left: 20px;
	background-color: transparent;
}

.rs1-select2 .select2-container--default .select2-selection--single .select2-selection__arrow
	{
	width: 38px;
	height: 20px;
	top: calc(50% - 10px);
	right: 5px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	justify-content: center;
	border-left: 1px solid #e6e6e6;
}

.rs1-select2 .select2-container--default .select2-selection--single .select2-selection__arrow b
	{
	display: none;
}

.rs1-select2 .select2-container--default .select2-selection--single .select2-selection__arrow::after
	{
	content: "\f0dc";
	font-family: FontAwesome;
	font-size: 13px;
	color: #808080;
}

.rs1-select2 .select2-container--default .select2-selection--single .select2-selection__arrow:hover:after
	{
	color: var(--primary-color, #717fe0);
}

/*------------------------------------------------------------------
[ Dropdown option ]*/
.rs1-select2 .select2-container--open .select2-dropdown {
	z-index: 1251;
	width: 100%;
	border: 1px solid color-mix(in srgb, var(--primary-color, #717fe0) 42%, #e8e8e8);
	border-radius: 0px;
	overflow: hidden;
	background-color: white;
	left: 0px;
	box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
	-o-box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
	-ms-box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
}

.rs1-select2 .select2-dropdown--above {
	top: -2px;
}

.rs1-select2 .select2-dropdown--below {
	top: 2px;
}

.rs1-select2 .select2-container .select2-results__option[aria-selected]
	{
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 20px;
}

.rs1-select2 .select2-container .select2-results__option[aria-selected="true"]
	{
	background: var(--primary-color, #717fe0);
	color: var(--on-primary, #ffffff);
}

.rs1-select2 .select2-container .select2-results__option--highlighted[aria-selected]
	{
	background: var(--primary-color, #717fe0);
	color: var(--on-primary, #ffffff);
}

.rs1-select2 .select2-results__options {
	font-family: Poppins-Regular;
	font-size: 13px;
	color: #555;
	line-height: 1.2;
}

.rs1-select2 .select2-search--dropdown .select2-search__field {
	border: 1px solid #aaa;
	outline: none;
	font-family: Poppins-Regular;
	font-size: 13px;
	color: #555;
	line-height: 1.2;
}

/*------------------------------------------------------------------
[ rs2 ]*/
.rs2-select2 .select2-container .select2-selection--single {
	height: 40px;
}

.rs2-select2 .select2-container .select2-selection--single .select2-selection__rendered
	{
	padding-left: 15px;
}

.rs2-select2 .select2-container--default .select2-selection--single .select2-selection__arrow
	{
	width: 35px;
	right: 0px;
	border-left: none;
}

.rs2-select2 .select2-container--default .select2-selection--single .select2-selection__arrow::after
	{
	content: "\f0d7";
}

/*//////////////////////////////////////////////////////////////////
[ Slick1 ]*/
.wrap-slick1 {
	position: relative;
}

.item-slick1 {
	height: calc(100vh - 40px);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	position: relative;
}

.section-slide .item-slick1::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(110deg, rgba(255, 255, 255, 0.28) 0%,
		rgba(255, 255, 255, 0.12) 42%, rgba(255, 255, 255, 0.02) 100%);
}

.section-slide .item-slick1 .layer-slick1 .size-101 {
	min-width: 152px;
	height: 46px;
	border-radius: 999px;
	border: 1px solid color-mix(in srgb, var(--primary-color) 28%, #ffffff) !important;
	background-color: color-mix(in srgb, var(--primary-color) 88%, #111111) !important;
	color: var(--on-primary, #ffffff) !important;
	font-family: var(--main-font);
	font-weight: 600;
	letter-spacing: 0.2px;
	box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
}

.section-slide .item-slick1 .layer-slick1 .size-101:hover {
	background-color: color-mix(in srgb, var(--primary-color) 76%, #111111) !important;
	border-color: color-mix(in srgb, var(--primary-color) 40%, #ffffff) !important;
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
	transform: translateY(-1px);
}

.rs1-slick1 .item-slick1 {
	height: calc(100vh - 84px);
}

.rs2-slick1 .item-slick1 {
	height: 100vh;
}

@media ( max-width : 991px) {
	.item-slick1 {
		height: calc(100vh - 70px) !important;
	}
}

/* Home slider — split image / copy card */
.section-slide--home .item-slick1--home::before {
	display: none;
}

.section-slide--home .home-slide-card__mobile-title {
	display: none;
}

/* Home slider arrows — always visible */
.section-slide--home .wrap-slick1--home .arrow-slick1,
.section-slide--home .wrap-slick1--home:hover .arrow-slick1 {
	opacity: 1 !important;
}

@media ( max-width : 767px) {
	.section-slide--home .item-slick1--home {
		height: auto !important;
		min-height: 0 !important;
		background: none !important;
	}

	.section-slide--home .item-slick1--home::before {
		display: none;
	}

	.section-slide--home .home-slide-card {
		display: flex;
		flex-direction: column;
		background: #fff;
	}

	.section-slide--home .home-slide-card__media {
		position: relative;
		width: 100%;
		aspect-ratio: 1 / 1;
		max-height: min(78vw, 400px);
		background-size: cover;
		background-position: center center;
		background-repeat: no-repeat;
	}

	.section-slide--home .home-slide-card__index {
		position: absolute;
		right: 12px;
		bottom: 12px;
		z-index: 2;
		min-width: 40px;
		height: 40px;
		padding: 0 10px;
		border-radius: 50%;
		background: rgba(255, 255, 255, 0.92);
		color: #111;
		font-family: var(--main-font);
		font-size: 12px;
		font-weight: 600;
		line-height: 40px;
		text-align: center;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
	}

	.section-slide--home .home-slide-card__body {
		padding: 20px 18px 26px;
		text-align: center;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 0;
	}

	.section-slide--home .home-slide-card__label,
	.section-slide--home .home-slide-card__headline {
		display: none !important;
	}

	.section-slide--home .home-slide-card__mobile-title {
		display: block;
		font-family: var(--accent-font);
		font-size: clamp(20px, 5.8vw, 26px);
		line-height: 1.25;
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: 0.04em;
		margin: 0 0 16px;
		padding: 0;
		max-width: 100%;
		color: #111;
	}

	.section-slide--home .home-slide-card__copy > .layer-slick1:has(.home-slide-card__cta) {
		visibility: visible !important;
		animation: none !important;
		-webkit-animation: none !important;
	}

	.section-slide--home .home-slide-card__cta {
		display: inline-flex !important;
		align-items: center;
		justify-content: center;
		gap: 6px;
		min-width: 0 !important;
		width: auto;
		height: 44px !important;
		padding: 0 22px !important;
		border-radius: 999px !important;
		background: #111 !important;
		border: none !important;
		color: #fff !important;
		font-weight: 600;
		letter-spacing: 0.06em;
		text-transform: uppercase;
		box-shadow: none !important;
		transition: none !important;
		transform: none !important;
	}

	.section-slide--home .home-slide-card__cta:hover {
		background: #111 !important;
		color: #fff !important;
		transform: none !important;
		box-shadow: none !important;
	}

	.section-slide--home .home-slide-card__cta i {
		font-size: 18px;
		line-height: 1;
	}

	.section-slide--home .wrap-slick1--home .arrow-slick1 {
		font-size: 48px;
		color: rgba(0, 0, 0, 0.42);
		top: calc(min(78vw, 400px) / 2);
		transform: translateY(-50%);
		width: 48px;
		height: 48px;
	}

	.section-slide--home .wrap-slick1--home .prev-slick1 {
		left: 4px;
	}

	.section-slide--home .wrap-slick1--home .next-slick1 {
		right: 4px;
	}
}

/* Home slider — desktop overlay (original hero layout) */
@media ( min-width : 768px) {
	.section-slide--home .slick-slide,
	.section-slide--home .slick-slide > div,
	.section-slide--home .item-slick1--home,
	.section-slide--home .home-slide-card {
		height: 100%;
	}

	.section-slide--home .item-slick1--home {
		height: calc(100vh - 40px) !important;
		min-height: 520px;
	}

	.section-slide--home .home-slide-card {
		position: relative;
		height: 100%;
		min-height: inherit;
	}

	.section-slide--home .home-slide-card__media {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		max-height: none;
		aspect-ratio: auto;
		background-size: cover;
		background-position: center center;
		background-repeat: no-repeat;
	}

	.section-slide--home .home-slide-card__media::after {
		content: "";
		position: absolute;
		inset: 0;
		pointer-events: none;
		background: linear-gradient(110deg, rgba(255, 255, 255, 0.72) 0%,
			rgba(255, 255, 255, 0.38) 42%, rgba(255, 255, 255, 0.06) 100%);
	}

	.section-slide--home .home-slide-card__index,
	.section-slide--home .home-slide-card__mobile-title {
		display: none !important;
	}

	.section-slide--home .home-slide-card__body {
		position: absolute;
		inset: 0;
		z-index: 2;
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		align-items: flex-start;
		padding: 0 clamp(32px, 6vw, 80px) clamp(88px, 14vh, 128px);
		background: transparent;
		pointer-events: none;
	}

	.section-slide--home .home-slide-card__copy {
		position: relative;
		z-index: 2;
		width: 100%;
		max-width: min(560px, 48vw);
		margin: 0;
		padding: 0 0 0 clamp(8px, 2vw, 32px);
		text-align: left;
		pointer-events: auto;
		transform: translateY(-6vh);
	}

	.section-slide--home .home-slide-card__label {
		display: block !important;
		font-family: var(--main-font);
		font-size: clamp(18px, 2vw, 28px);
		line-height: 1.25;
		font-weight: 600;
		max-width: 100%;
		letter-spacing: 0.02em;
		opacity: 0.92;
	}

	.section-slide--home .home-slide-card__headline {
		display: block !important;
		font-family: var(--accent-font);
		font-size: clamp(42px, 4.8vw, 72px);
		line-height: 1.04;
		font-weight: 600;
		max-width: 100%;
		letter-spacing: 0.02em;
		padding-top: 10px !important;
		padding-bottom: 22px !important;
	}

	.section-slide--home .home-slide-card__cta {
		display: inline-flex !important;
		align-items: center;
		gap: 4px;
		min-width: 152px;
		height: 46px;
		padding: 0 18px !important;
		border-radius: 999px !important;
		background-color: color-mix(in srgb, var(--primary-color) 88%, #111111) !important;
		border: 1px solid color-mix(in srgb, var(--primary-color) 28%, #ffffff) !important;
		color: var(--on-primary, #ffffff) !important;
		text-transform: none;
		letter-spacing: 0.2px;
		box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
	}

	.section-slide--home .home-slide-card__cta-icon {
		display: none;
	}

	.section-slide--home .home-slide-card__cta:hover {
		background-color: color-mix(in srgb, var(--primary-color) 76%, #111111) !important;
		transform: translateY(-1px);
	}

	.section-slide--home .wrap-slick1--home .arrow-slick1 {
		font-size: 58px;
		color: rgba(0, 0, 0, 0.32);
		top: 50%;
		transform: translateY(-50%);
	}

	.section-slide--home .wrap-slick1--home .prev-slick1 {
		left: clamp(12px, 2.5vw, 48px);
	}

	.section-slide--home .wrap-slick1--home .next-slick1 {
		right: clamp(12px, 2.5vw, 48px);
	}
}

@media ( min-width : 768px) and (max-width : 991px) {
	.section-slide--home .item-slick1--home {
		height: calc(100vh - 70px) !important;
	}

	.section-slide--home .home-slide-card__body {
		padding: 0 28px 72px;
	}

	.section-slide--home .home-slide-card__copy {
		max-width: min(480px, 58vw);
		padding-left: 12px;
		transform: translateY(-4vh);
	}
}

.arrow-slick1 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	align-items: center;
	width: auto;
	height: auto;
	font-size: 80px;
	color: rgba(0, 0, 0, 0.3);
	position: absolute;
	opacity: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 200;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
}

.wrap-slick1:hover .arrow-slick1 {
	opacity: 1;
}

.arrow-slick1:hover {
	color: #7280e0;
}

.next-slick1 {
	right: 50px;
	left: auto;
}

.prev-slick1 {
	left: 50px;
	right: auto;
}

@media ( max-width : 991px) {
	.next-slick1 {
		right: 15px;
	}
	.prev-slick1 {
		left: 15px;
	}
}

/*---------------------------------------------*/
.rs2-slick1 .arrow-slick1 {
	color: rgba(255, 255, 255, 0.3);
}

.rs2-slick1 .arrow-slick1:hover {
	color: #7280e0;
}

.wrap-slick1-dots {
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 60px;
}

.slick1-dots {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
}

.slick1-dots li {
	max-width: 190px;
	position: relative;
	cursor: pointer;
	margin-right: 1px;
}

.slick1-dots li img {
	width: 100%;
}

.caption-dots-slick1 {
	font-family: Poppins-ExtraLight;
	font-size: 16px;
	line-height: 1.3;
	color: #fff;
	text-align: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.5);
	padding: 5px;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
	opacity: 0;
}

.slick1-dots li:hover .caption-dots-slick1 {
	opacity: 1;
}

.slick1-dots li.slick-active .caption-dots-slick1 {
	opacity: 1;
}

@media ( max-width : 575px) {
	.caption-dots-slick1 {
		font-size: 13px;
	}
	.wrap-slick1-dots {
		bottom: 25px;
	}
}

/*//////////////////////////////////////////////////////////////////
[ Slick2 ]*/
.wrap-slick2 {
	position: relative;
	margin-right: -15px;
	margin-left: -15px;
}

/* ------------------------------------ */
.arrow-slick2 {
	position: absolute;
	z-index: 100;
	top: calc(( 100% - 60px)/2);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	font-size: 39px;
	color: #ccc;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
}

.arrow-slick2:hover {
	color: #666;
}

.next-slick2 {
	right: -40px;
}

.prev-slick2 {
	left: -40px;
}

@media ( max-width : 1300px) {
	.next-slick2 {
		right: 0px;
	}
	.prev-slick2 {
		left: 0px;
	}
}

/*//////////////////////////////////////////////////////////////////
[ Slick3 ]*/
.wrap-slick3 {
	position: relative;
}

/*---------------------------------------------*/
.wrap-slick3-arrows {
	position: absolute;
	z-index: 100;
	width: 83.333333%;
	right: 0;
	top: calc(50% - 20px);
}

.arrow-slick3 {
	font-size: 25px;
	color: #fff;
	position: absolute;
	top: 0;
	width: 40px;
	height: 40px;
	background-color: rgba(0, 0, 0, 0.5);
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
}

.arrow-slick3:hover {
	background-color: rgba(0, 0, 0, 0.9);
}

.prev-slick3 {
	left: 0px;
}

.next-slick3 {
	right: 0px;
}

/*---------------------------------------------*/
.wrap-slick3-dots {
	width: 11.111111%;
}

.slick3 {
	width: 83.333333%;
}

.slick3-dots li {
	display: block;
	position: relative;
	width: 100%;
	margin-bottom: 27px;
}

.slick3-dots li img {
	width: 100%;
}

.slick3-dot-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	cursor: pointer;
	border: 2px solid transparent;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
}

.slick3-dot-overlay:hover {
	border-color: #ccc;
}

.slick3-dots .slick-active .slick3-dot-overlay {
	border-color: #ccc;
}

/*//////////////////////////////////////////////////////////////////
[ RS Magnific-Popup ]*/
.mfp-bg {
	z-index: 10000;
	background-color: #000;
	opacity: 0.9;
}

.mfp-wrap {
	z-index: 10000;
}

.mfp-arrow:after, .mfp-arrow:before {
	display: none;
}

.mfp-arrow {
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
}

button.mfp-arrow-right {
	background-image: url(../images/icons/icon-next.png);
	background-position: center center;
	background-repeat: no-repeat;
}

button.mfp-arrow-left {
	background-image: url(../images/icons/icon-prev.png);
	background-position: center center;
	background-repeat: no-repeat;
}

button.mfp-close {
	width: 75px !important;
	height: 58px !important;
	line-height: 44px;
	position: fixed;
	right: 0;
	top: 0;
	color: transparent !important;
	background-image: url(../images/icons/icon-close.png);
	background-position: center center;
	background-repeat: no-repeat;
	cursor: pointer !important;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
}

/* overlay at start */
.mfp-fade.mfp-bg {
	opacity: 0;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
	opacity: 0.9;
}
/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
	opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
	opacity: 0;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
	opacity: 1;
}
/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
	opacity: 0;
}

/*//////////////////////////////////////////////////////////////////
[ Tab01 ]*/
.tab01 .nav-tabs {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	border: none;
}

.tab01 .nav-tabs .nav-item {
	margin: 0px 15px;
}

.tab01 .nav-link {
	font-family: Poppins-Regular;
	font-size: 15px;
	color: #888;
	line-height: 1.2;
	padding: 0;
	border-radius: 0px;
	border: none;
	border-bottom: 1px solid transparent;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
}

.tab01 .nav-link.active {
	color: #333;
	border-color: #797979;
}

.tab01 .nav-link:hover {
	color: #333;
	border-color: #797979;
}

/*//////////////////////////////////////////////////////////////////
[ RS sweet alert ]*/
.swal-overlay {
	overflow-y: auto;
}

.swal-modal,
.swal-title,
.swal-text,
.swal-button,
.swal-content,
.swal-footer {
	font-family: var(--main-font, 'Poppins', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif);
}

.swal-button:focus {
	outline: none;
	box-shadow: none;
}

.swal-button {
	background-color: var(--primary-color);
	font-size: 16px;
	color: var(--on-primary, #ffffff);
	text-transform: uppercase;
	font-weight: unset;
	border-radius: 4px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.swal-button:hover {
	background-color: #333;
}

.swal-button:active {
	background-color: #333;
}

.swal-title {
	color: #333333;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5;
	padding: 0 15px;
}

.swal-text {
	color: #555555;
	font-size: 16px;
	line-height: 1.666667;
	text-align: center;
}

.swal-footer {
	margin-top: 0;
}

/*//////////////////////////////////////////////////////////////////
[ Filter ]*/
.show-search .icon-search, .show-filter .icon-filter {
	display: none;
}

.show-search .icon-close-search, .show-filter .icon-close-filter {
	display: unset;
}

.show-search, .show-filter {
	background-color: #f2f2f2;
	border-color: #e7e7e7;
	position: relative;
}

.show-search::after, .show-filter::after {
	content: "";
	position: absolute;
	display: block;
	width: 14px;
	height: 14px;
	background-color: #f2f2f2;
	border-left: 1px solid #e7e7e7;
	border-bottom: 1px solid #e7e7e7;
	transform-origin: center center;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	left: calc(50% - 7px);
	bottom: -8px;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
}

.show-search:hover:after, .show-filter:hover:after {
	background-color: #717fe0;
	border-color: #717fe0;
}

/*---------------------------------------------*/
.filter-col1 {
	width: 27%;
}

.filter-col2 {
	width: 27%;
}

.filter-col3 {
	width: 26%;
}

.filter-col4 {
	width: 20%;
}

/*---------------------------------------------*/
.filter-link {
	color: #aaa;
	border-bottom: 1px solid transparent;
}

.filter-link:hover {
	color: #6c7ae0;
	border-bottom: 1px solid #6c7ae0;
}

.filter-link-active {
	color: #6c7ae0;
	border-bottom: 1px solid #6c7ae0;
}

@media ( max-width : 767px) {
	.filter-col1, .filter-col2, .filter-col3, .filter-col4 {
		width: 50%;
	}
}

@media ( max-width : 575px) {
	.filter-col1, .filter-col2, .filter-col3, .filter-col4 {
		width: 100%;
	}
}

/*//////////////////////////////////////////////////////////////////
[ Num Produce ]*/
.wrap-num-produce {
	width: 140px;
	height: 45px;
	border: 1px solid #e6e6e6;
	border-radius: 3px;
	overflow: hidden;
}

.btn-num-produce-up, .btn-num-produce-down {
	width: 45px;
	height: 100%;
	cursor: pointer;
}

.num-produce {
	width: calc(100% - 90px);
	height: 100%;
	border-left: 1px solid #e6e6e6;
	border-right: 1px solid #e6e6e6;
	background-color: #f7f7f7;
}

input.num-produce {
	-moz-appearance: textfield;
	appearance: none;
	-webkit-appearance: none;
}

input.num-produce::-webkit-outer-spin-button, input.num-produce::-webkit-inner-spin-button
	{
	-webkit-appearance: none;
	margin: 0;
}

/*//////////////////////////////////////////////////////////////////
[ Tolltip100 ]*/
.tooltip100 {
	position: relative;
}

.tooltip100::after {
	content: attr(data-tooltip);
	font-family: Poppins-Regular;
	font-size: 12px;
	color: #888;
	line-height: 18px;
	white-space: nowrap;
	display: block;
	position: absolute;
	background: #fff;
	border: 1px solid #ccc;
	height: 20px;
	padding: 0px 8px;
	top: -35px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.18);
	-moz-box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.18);
	-webkit-box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.18);
	-o-box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.18);
	-ms-box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.18);
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	-moz-transition: all 0.2s;
	transition: all 0.2s;
	visibility: hidden;
	opacity: 0;
}

.tooltip100:hover:after {
	visibility: visible;
	opacity: 1;
}

/*//////////////////////////////////////////////////////////////////
[ Modal1 ]*/
.wrap-modal1 {
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	z-index: 9000;
	overflow: auto;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
	visibility: hidden;
	opacity: 0;
}

.overlay-modal1 {
	position: fixed;
	z-index: -1;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #000;
	opacity: 0.8;
}

.show-modal1 {
	visibility: visible;
	opacity: 1;
}

/*//////////////////////////////////////////////////////////////////
[ Table Shopping Cart ]*/
.wrap-table-shopping-cart {
	overflow: auto;
	border-left: 1px solid #e6e6e6;
	border-right: 1px solid #e6e6e6;
}

.table-shopping-cart {
	border-collapse: collapse;
	width: 100%;
	min-width: 680px;
}

.table-shopping-cart tr {
	border-top: 1px solid #e6e6e6;
	border-bottom: 1px solid #e6e6e6;
}

.table-shopping-cart .column-1 {
	width: 133px;
	padding-left: 50px;
}

.table-shopping-cart .column-2 {
	width: 220px;
	font-size: 15px;
}

.table-shopping-cart .column-3 {
	width: 120px;
	font-size: 16px;
}

.table-shopping-cart .column-4 {
	width: 145px;
	text-align: right;
}

.table-shopping-cart .column-5 {
	width: 172px;
	padding-right: 50px;
	text-align: right;
	font-size: 16px;
}

.table-shopping-cart .table_row {
	height: 185px;
}

.table-shopping-cart .table_row td {
	padding-bottom: 20px;
}

.table-shopping-cart .table_row td.column-1 {
	padding-bottom: 30px;
}

.table-shopping-cart .table_head th {
	font-family: Poppins-Bold;
	font-size: 13px;
	color: #555;
	text-transform: uppercase;
	line-height: 1.6;
	padding-top: 15px;
	padding-bottom: 15px;
}

.table-shopping-cart td {
	font-family: Poppins-Regular;
	color: #555;
	line-height: 1.6;
}

/* Shared cart card layout (checkout + shopping cart) */
.checkout-cart-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 18px;
}

.checkout-cart-item {
	display: grid;
	grid-template-columns: 84px 1fr auto;
	grid-template-areas:
		"img info total"
		"img meta qty";
	gap: 8px 14px;
	padding: 14px;
	border: 1px solid #ececec;
	border-radius: 4px;
	background: #fff;
}

.checkout-cart-img {
	grid-area: img;
	width: 84px;
	height: 84px;
	border: 1px solid #e9e9e9;
	border-radius: 4px;
	overflow: hidden;
}

.checkout-cart-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.checkout-cart-info {
	grid-area: info;
	min-width: 0;
}

.checkout-cart-name {
	font-weight: 500;
	color: #222;
	line-height: 1.25;
	font-family: var(--main-font);
}

.checkout-cart-meta {
	grid-area: meta;
	font-size: 16px;
	color: #666;
	font-family: var(--main-font);
}

.checkout-cart-total {
	grid-area: total;
	text-align: right;
	font-size: 18px;
	font-weight: 700;
	color: #222;
	white-space: nowrap;
	font-family: var(--main-font);
}

.shopping-cart-totals .mtext-110 {
	font-family: var(--main-font);
	font-weight: 700;
}

/* Shopping cart page: rounded surfaces (match site cards) */
.shopping-cart-page .wrap-table-shopping-cart {
	border: 1px solid #e9ecf3;
	border-radius: 14px;
	box-shadow: 0 8px 26px rgba(17, 24, 39, 0.07);
	overflow: hidden;
	background: #fafbfc;
}

.shopping-cart-page .checkout-cart-list {
	padding: 14px;
	gap: 12px;
}

.shopping-cart-page .checkout-cart-item {
	border-radius: 12px;
	border-color: #e3e8f2;
	box-shadow: 0 2px 10px rgba(17, 24, 39, 0.05);
}

.shopping-cart-page .checkout-cart-img {
	border-radius: 10px;
	border-color: #e5e7eb;
}

.shopping-cart-page .shopping-cart-totals {
	border-radius: 14px !important;
	border: 1px solid #e9ecf3 !important;
	box-shadow: 0 8px 26px rgba(17, 24, 39, 0.07);
	background: #fff;
}

.shopping-cart-page .checkout-cart-item.has-controls .wrap-num-produce {
	border-radius: 10px;
	border-color: #e5e7eb;
	overflow: hidden;
}

.shopping-cart-page .shopping-cart-empty {
	max-width: 440px;
	margin-left: auto;
	margin-right: auto;
	padding: 40px 28px;
	border: 1px solid #e9ecf3;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 8px 26px rgba(17, 24, 39, 0.06);
}

.shopping-cart-page .shopping-cart-page-title {
	font-family: var(--accent-font);
	font-weight: 700;
	letter-spacing: 0.2px;
}

.wishlist-page .wishlist-page-title {
	font-family: var(--accent-font);
	font-weight: 700;
	letter-spacing: 0.2px;
}

/* Wishlist (desktop): footer at viewport bottom like shopping cart */
@media ( min-width : 768px) {
	body.wishlist-page {
		display: flex;
		flex-direction: column;
		min-height: 100%;
	}

	body.wishlist-page section.checkout-page.main-content {
		flex: 1 0 auto;
	}

	body.wishlist-page footer.site-footer {
		flex-shrink: 0;
		margin-top: auto;
	}
}

@media ( max-width : 767px) {
	.shopping-cart-page .shopping-cart-page-title {
		padding-bottom: 16px !important;
	}
	.wishlist-page .wishlist-page-title {
		padding-bottom: 16px !important;
	}
	.shopping-cart-page .shopping-cart-list-gutter {
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
	.shopping-cart-page .shopping-cart-totals {
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
	.shopping-cart-page .shopping-cart-main > .container > .row > [class*="col-"] {
		margin-bottom: 28px !important;
	}
	.shopping-cart-page .shopping-cart-main > .container > .row > [class*="col-"]:last-child {
		margin-bottom: 0 !important;
	}
	/* Genel mobil kuralı border sıfırlıyor; sepet kartını wishlist ile hizala */
	.shopping-cart-page .wrap-table-shopping-cart {
		border: 1px solid #e9ecf3 !important;
		border-radius: 14px !important;
		box-shadow: 0 8px 26px rgba(17, 24, 39, 0.07) !important;
		background: #fafbfc !important;
		overflow: hidden;
	}
	.shopping-cart-page .checkout-cart-list {
		padding: 12px !important;
		gap: 10px !important;
	}
	.shopping-cart-page .shopping-cart-main {
		padding-bottom: 72px !important;
	}
}

/* Wishlist page: same rounded surfaces as shopping cart */
.wishlist-page .account-store-panel {
	max-width: 920px;
}

/* Account / wishlist store cards (myAccount tabs + wishlist page) */
.account-store-panel {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.account-store-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.account-store-card {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	padding: 0.95rem 1rem;
	border: 1px solid color-mix(in srgb, var(--account-primary, var(--primary-color, #717fe0)), #ffffff 82%);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 2px 14px rgba(17, 24, 39, 0.04);
}

.account-store-card__img {
	display: block;
	width: 72px;
	height: 72px;
	flex-shrink: 0;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid color-mix(in srgb, var(--account-primary, var(--primary-color, #717fe0)), #ffffff 78%);
}

.account-store-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.account-store-card__body {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.account-store-card__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.65rem;
}

.account-store-card__info {
	flex: 1;
	min-width: 0;
}

.account-store-card__name {
	display: block;
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.35;
	color: var(--account-text, #1f2937);
	text-decoration: none;
}

.account-store-card__variant {
	display: block;
	margin-top: 0.15rem;
	font-size: 0.78rem;
	color: color-mix(in srgb, var(--account-text, #1f2937), #888 45%);
}

.account-store-card__badge-slot {
	margin-top: 0.35rem;
}

.account-store-card__remove,
.account-store-card__remove.checkout-cart-remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	padding: 0;
	border: 1px solid color-mix(in srgb, var(--primary-color, #717fe0) 22%, #e5e7eb);
	border-radius: 10px;
	background: color-mix(in srgb, var(--primary-color, #717fe0) 10%, #ffffff);
	color: var(--primary-color, #717fe0);
	font-size: 1.45rem;
	line-height: 1;
	cursor: pointer;
	flex-shrink: 0;
	transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.account-store-card__remove:hover,
.account-store-card__remove:focus-visible,
.account-store-card__remove.checkout-cart-remove:hover,
.account-store-card__remove.checkout-cart-remove:focus-visible {
	color: color-mix(in srgb, var(--primary-color, #717fe0) 90%, #111827);
	background: color-mix(in srgb, var(--primary-color, #717fe0) 16%, #ffffff);
	border-color: color-mix(in srgb, var(--primary-color, #717fe0) 34%, #e5e7eb);
	outline: none;
}

.account-store-card__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
}

.account-store-card__bottom--wishlist {
	flex-wrap: wrap;
}

.account-store-card__price {
	text-align: right;
	flex-shrink: 0;
}

.account-store-card__price .ecom-price {
	justify-content: flex-end;
}

.account-store-qty {
	display: inline-flex;
	align-items: center;
	height: 34px;
	border: 1px solid color-mix(in srgb, var(--account-primary, var(--primary-color, #717fe0)), #ffffff 72%);
	border-radius: 10px;
	overflow: hidden;
	background: color-mix(in srgb, var(--account-primary, var(--primary-color, #717fe0)), #ffffff 96%);
}

.account-store-qty__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	color: #64748b;
	font-size: 0.95rem;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.account-store-qty__btn:hover {
	background: color-mix(in srgb, var(--account-primary, var(--primary-color, #717fe0)), #ffffff 88%);
	color: var(--account-text, #1f2937);
}

.account-store-qty__value {
	min-width: 34px;
	padding: 0 0.35rem;
	text-align: center;
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--account-text, #1f2937);
}

.account-store-card__view {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	min-height: 38px;
	padding: 0 0.95rem;
	border-radius: 999px;
	background: var(--account-primary, var(--primary-color, #717fe0));
	color: var(--account-on-primary, var(--on-primary, #fff)) !important;
	font-size: 0.82rem;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 8px 20px color-mix(in srgb, var(--account-primary, var(--primary-color, #717fe0)) 28%, transparent);
	transition: filter 0.15s ease, transform 0.15s ease;
}

.account-store-card__view:hover {
	color: var(--account-on-primary, var(--on-primary, #fff)) !important;
	filter: brightness(1.04);
	transform: translateY(-1px);
}

.account-store-summary {
	margin-top: 0.35rem;
	padding: 1.15rem 1.2rem;
	border: 1px solid color-mix(in srgb, var(--account-primary, var(--primary-color, #717fe0)), #ffffff 82%);
	border-radius: 16px;
	background: linear-gradient(135deg,
			color-mix(in srgb, var(--account-primary, var(--primary-color, #717fe0)), #ffffff 94%) 0%,
			#fff 58%);
	box-shadow: 0 4px 24px rgba(17, 24, 39, 0.06);
}

.account-store-summary__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 0;
}

.account-store-summary__title {
	display: block;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--account-text, #1f2937);
	text-transform: none;
	letter-spacing: 0;
}

.account-store-summary__meta {
	display: block;
	margin-top: 0.2rem;
	font-size: 0.82rem;
	color: color-mix(in srgb, var(--account-text, #1f2937), #888 40%);
}

.account-store-summary__total .ecom-price {
	justify-content: flex-end;
	font-size: 1.05rem;
}

.cart-sticky-bar-mount--embedded {
	flex-shrink: 0;
	margin-top: 0.85rem;
}

.account-store-sticky-bar.cart-sticky-bar-mount--embedded {
	margin-top: 1rem;
}

@media (max-width: 575px) {
	.account-store-card {
		padding: 0.85rem;
	}

	.account-store-card__img {
		width: 64px;
		height: 64px;
	}

	.account-store-card__bottom--wishlist {
		flex-direction: column;
		align-items: stretch;
	}

	.account-store-card__price {
		text-align: left;
	}

	.account-store-card__price .ecom-price {
		justify-content: flex-start;
	}

	.account-store-card__view {
		width: 100%;
	}

	.account-store-summary__row {
		flex-direction: column;
		align-items: flex-start;
	}

	.account-store-summary__total .ecom-price {
		justify-content: flex-start;
	}
}

.wishlist-page .wrap-table-shopping-cart {
	border: 1px solid #e9ecf3;
	border-radius: 14px;
	box-shadow: 0 8px 26px rgba(17, 24, 39, 0.07);
	overflow: hidden;
	background: #fafbfc;
}

.wishlist-page .checkout-cart-list {
	padding: 14px;
	gap: 12px;
}

.wishlist-page .checkout-cart-item {
	border-radius: 12px;
	border-color: #e3e8f2;
	box-shadow: 0 2px 10px rgba(17, 24, 39, 0.05);
}

.wishlist-page .checkout-cart-img {
	border-radius: 10px;
	border-color: #e5e7eb;
}

.wishlist-page .checkout-cart-actions .size-103 {
	border-radius: 999px;
}

.wishlist-page .wishlist-remove-btn {
	border-radius: 10px;
}

.wishlist-page .wishlist-empty {
	max-width: 440px;
	margin-left: auto;
	margin-right: auto;
	padding: 40px 28px;
	border: 1px solid #e9ecf3;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 8px 26px rgba(17, 24, 39, 0.06);
}

/* Checkout order page: cart review + shipping + summary (align with cart/wishlist) */
.checkout-order-page .wrap-table-shopping-cart {
	border: 1px solid #e9ecf3;
	border-radius: 14px;
	box-shadow: 0 8px 26px rgba(17, 24, 39, 0.07);
	overflow: hidden;
	background: #fafbfc;
}

.checkout-order-page .checkout-cart-list {
	padding: 14px;
	gap: 12px;
}

.checkout-order-page .checkout-cart-item {
	border-radius: 12px;
	border-color: #e3e8f2;
	box-shadow: 0 2px 10px rgba(17, 24, 39, 0.05);
}

.checkout-order-page .checkout-cart-img {
	border-radius: 10px;
	border-color: #e5e7eb;
}

.checkout-order-page .checkout-box.shipping-card {
	border-radius: 14px !important;
	border: 1px solid #e9ecf3 !important;
	box-shadow: 0 8px 26px rgba(17, 24, 39, 0.07);
	background: #fff;
}

/* Free shipping threshold hints (sticky bar + checkout summary) */
.free-shipping-hint {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	color: #64748b;
	min-width: 0;
}

.free-shipping-hint__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 1.1rem;
	height: 1.1rem;
	color: var(--primary-color, #717fe0);
	font-size: 0.95rem;
	line-height: 1;
}

.free-shipping-hint__text {
	flex: 1;
	min-width: 0;
	font-size: 0.75rem;
	line-height: 1.35;
	font-weight: 600;
	color: #475569;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.free-shipping-hint__text--success,
.free-shipping-hint--qualified .free-shipping-hint__text {
	color: #15803d;
	font-weight: 700;
	white-space: normal;
}

.free-shipping-hint--sticky {
	padding: 0.42rem 0.95rem 0.1rem;
	border-bottom: 1px solid rgba(226, 232, 240, 0.85);
}

.free-shipping-hint--sticky .free-shipping-hint__text {
	font-size: 0.6875rem;
}

.free-shipping-hint--summary {
	margin: 0.5rem 0 0;
	padding: 0.62rem 0.75rem;
	border-radius: 10px;
	background: color-mix(in srgb, var(--primary-color, #717fe0) 7%, #ffffff);
	border: 1px solid color-mix(in srgb, var(--primary-color, #717fe0) 14%, #eef0f4);
}

.checkout-order-page .checkout-summary-box .js-checkout-shipping-row {
	padding-bottom: 0;
}

/* Checkout order summary — premium card */
.checkout-premium-card {
	padding: 1.35rem 1.4rem 1.5rem !important;
}

.checkout-premium-summary {
	padding: 1rem 1.05rem;
	border-radius: 14px;
	background: linear-gradient(180deg, #fafbfc 0%, #f4f6f9 100%);
	border: 1px solid #eef0f4;
}

.checkout-premium-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 0.65rem 1rem;
	align-items: baseline;
	padding: 0.42rem 0;
	font-size: 0.9rem;
}

.checkout-premium-row + .checkout-premium-row {
	border-top: 1px solid #e8ecf2;
	margin-top: 0.15rem;
	padding-top: 0.58rem;
}

.checkout-premium-row__main {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 0.65rem 1rem;
	align-items: baseline;
	width: 100%;
	grid-column: 1 / -1;
}

.checkout-premium-row--stacked {
	display: block;
}

.checkout-premium-row--stacked .free-shipping-hint--summary {
	margin-top: 0.55rem;
}

.checkout-premium-row__label {
	font-weight: 500;
	color: #6b7280;
	font-size: 0.875rem;
}

.checkout-premium-row__meta {
	display: inline-block;
	margin-left: 0.35rem;
	padding: 0.1rem 0.45rem;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	color: var(--primary-color, #717fe0);
	background: color-mix(in srgb, var(--primary-color, #717fe0) 10%, #fff);
}

.checkout-premium-row__value {
	text-align: right;
	font-weight: 600;
	color: #111827;
	font-variant-numeric: tabular-nums;
}

.checkout-premium-row--discount .checkout-premium-row__label,
.checkout-premium-row--discount .checkout-premium-row__value--discount {
	color: #059669;
}

.checkout-premium-free {
	color: #059669 !important;
	font-weight: 600;
}

.checkout-premium-price.ecom-price {
	justify-content: flex-end;
}

.checkout-premium-card .ecom-price--discounted {
	align-items: flex-end;
}

.checkout-premium-card .ecom-price--discounted .ecom-price__old {
	display: inline-flex;
	align-items: baseline;
	gap: 0.2em;
	text-decoration: none;
	color: #111827;
	font-weight: 500;
}

.checkout-premium-card .ecom-price--discounted .ecom-price__old .ecom-price__amount {
	text-decoration: line-through;
	text-decoration-thickness: 1.5px;
	color: #111827;
}

.checkout-premium-card .ecom-price--discounted .ecom-price__old .ecom-price__currency {
	text-decoration: none;
	color: #111827;
}

.checkout-premium-price--total .ecom-price__current,
.checkout-premium-total .checkout-premium-price--total .ecom-price__amount {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--primary-color, #717fe0);
}

.checkout-premium-card .checkout-premium-price--total.ecom-price--discounted .ecom-price__current,
.checkout-premium-card .checkout-premium-price--total.ecom-price--discounted .ecom-price__current .ecom-price__amount,
.checkout-premium-card .checkout-premium-price--total.ecom-price--discounted .ecom-price__current .ecom-price__currency {
	color: var(--primary-color, #717fe0);
}

.checkout-premium-section-title {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0 0 0.85rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #6b7280;
}

.checkout-premium-section-title .zmdi {
	font-size: 1.05rem;
	color: var(--primary-color, #717fe0);
}

.checkout-premium-section-title--compact {
	margin-bottom: 0.65rem;
}

.checkout-premium-coupon {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid #eef0f4;
}

.checkout-coupon-form {
	display: flex;
	align-items: stretch;
	gap: 0.55rem;
}

.checkout-coupon-form__input {
	flex: 1 1 auto;
	min-width: 0;
}

.checkout-coupon-form__btn {
	flex: 0 0 auto;
	align-self: stretch;
	padding: 0 1.1rem;
	border: none;
	border-radius: 12px;
	background: linear-gradient(145deg, var(--primary-color, #717fe0), color-mix(in srgb, var(--primary-color, #717fe0) 78%, #4338ca));
	color: #fff;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	white-space: nowrap;
	box-shadow: 0 4px 14px color-mix(in srgb, var(--primary-color, #717fe0) 28%, transparent);
	transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.checkout-coupon-form__btn:hover:not(:disabled),
.checkout-coupon-form__btn:focus:not(:disabled) {
	filter: brightness(1.05);
	box-shadow: 0 6px 18px color-mix(in srgb, var(--primary-color, #717fe0) 34%, transparent);
	outline: none;
}

.checkout-coupon-form__btn:disabled {
	opacity: 0.42;
	filter: none;
	box-shadow: none;
	cursor: not-allowed;
}

.checkout-coupon-applied {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.75rem 0.85rem;
	border-radius: 12px;
	background: color-mix(in srgb, #059669 6%, #fff);
	border: 1px solid color-mix(in srgb, #059669 18%, #e5e7eb);
}

.checkout-coupon-applied__main {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	min-width: 0;
}

.checkout-coupon-applied__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 999px;
	background: #059669;
	color: #fff;
	font-size: 1rem;
	flex-shrink: 0;
}

.checkout-coupon-applied__text {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
	min-width: 0;
}

.checkout-coupon-applied__code {
	font-size: 0.92rem;
	font-weight: 700;
	color: #111827;
	letter-spacing: 0.04em;
}

.checkout-coupon-applied__hint {
	font-size: 0.8rem;
	font-weight: 600;
	color: #059669;
}

.checkout-coupon-applied__remove {
	flex: 0 0 auto;
	padding: 0.4rem 0.75rem;
	border: 1px solid #d1d5db;
	border-radius: 999px;
	background: #fff;
	color: #6b7280;
	font-size: 0.78rem;
	font-weight: 600;
	transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.checkout-coupon-applied__remove:hover,
.checkout-coupon-applied__remove:focus {
	border-color: #9ca3af;
	color: #374151;
	background: #f9fafb;
	outline: none;
}

.checkout-premium-payment {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid #eef0f4;
}

.checkout-premium-payment-fields {
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
}

.checkout-premium-payment-split {
	display: grid;
	grid-template-columns: 1.35fr 1fr;
	gap: 0.65rem;
}

.checkout-premium-field {
	margin-bottom: 0 !important;
}

.checkout-premium-total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 1.1rem;
	padding: 1rem 1.05rem;
	border-radius: 14px;
	background: linear-gradient(135deg, color-mix(in srgb, var(--primary-color, #717fe0) 7%, #fff) 0%, #f8fafc 100%);
	border: 1px solid color-mix(in srgb, var(--primary-color, #717fe0) 16%, #e5e7eb);
}

.checkout-premium-total__label {
	font-size: 0.95rem;
	font-weight: 700;
	color: #111827;
}

.checkout-premium-total__value {
	text-align: right;
}

.checkout-premium-submit {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-top: 1rem;
	padding: 0.95rem 1.5rem;
	border: none;
	border-radius: 999px;
	background: linear-gradient(145deg, var(--primary-color, #717fe0), color-mix(in srgb, var(--primary-color, #717fe0) 75%, #4338ca));
	color: #fff;
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	box-shadow: 0 8px 24px color-mix(in srgb, var(--primary-color, #717fe0) 32%, transparent);
	transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.checkout-premium-submit:hover,
.checkout-premium-submit:focus {
	filter: brightness(1.04);
	box-shadow: 0 10px 28px color-mix(in srgb, var(--primary-color, #717fe0) 38%, transparent);
	outline: none;
}

.checkout-premium-submit:active {
	transform: translateY(1px);
}

.checkout-premium-submit.is-loading {
	opacity: 0.78;
	pointer-events: none;
}

.checkout-premium-payment-logos {
	margin-top: 1.15rem;
	padding-top: 1rem;
	border-top: 1px solid #f1f3f6;
}

.free-shipping-hint--summary {
	margin: 0;
	padding: 0.55rem 0.65rem;
	border-radius: 10px;
	background: color-mix(in srgb, var(--primary-color, #717fe0) 5%, #fff);
	border: 1px solid color-mix(in srgb, var(--primary-color, #717fe0) 12%, #eef0f4);
}

.free-shipping-hint--summary .free-shipping-hint__text {
	font-size: 0.72rem;
	font-weight: 600;
	white-space: normal;
}

@media (max-width: 575px) {
	.checkout-premium-card {
		padding: 1rem 1rem 1.15rem !important;
	}

	.checkout-premium-summary {
		padding: 0.85rem 0.9rem;
	}

	.checkout-coupon-form__btn {
		min-height: 40px;
		padding: 0 0.85rem;
		font-size: 0.78rem;
	}

	.checkout-coupon-applied {
		flex-direction: column;
		align-items: stretch;
	}

	.checkout-coupon-applied__remove {
		width: 100%;
	}

	.checkout-premium-payment-split {
		grid-template-columns: 1fr;
	}
}

/* Premium inputs + Select2 — checkout shipping, myAccount addresses, add-address modal */
.premium-form-surface {
	position: relative;
}

.premium-form-surface .checkout-rounded-field {
	border-radius: 12px;
	border-color: #e5e9f2;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.premium-form-surface .checkout-rounded-field.rs1-select2 {
	overflow: visible;
}

.premium-form-surface .checkout-rounded-field:not(.rs1-select2) {
	overflow: hidden;
}

.premium-form-surface .checkout-rounded-field:focus-within {
	border-color: color-mix(in srgb, var(--primary-color, #717fe0) 42%, #e5e9f2);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary-color, #717fe0) 14%, transparent);
}

.premium-form-surface .checkout-rounded-field input,
.premium-form-surface .checkout-rounded-field textarea {
	border: 0;
	border-radius: 12px;
	background: transparent;
}

.premium-form-surface .checkout-rounded-field.rs1-select2 .select2-container .select2-selection--single {
	border-radius: 12px;
}

.premium-form-surface .checkout-rounded-field.rs1-select2 .select2-container--default .select2-selection--single {
	height: 45px;
	background: #fff;
}

.premium-form-surface .checkout-rounded-field.rs1-select2 .select2-container--default .select2-selection--single .select2-selection__rendered {
	padding-left: 15px;
	font-size: 14px;
	color: #334155;
}

.premium-form-surface .checkout-rounded-field.rs1-select2 .select2-container--default .select2-selection--single .select2-selection__arrow {
	width: 40px;
	height: calc(100% - 12px);
	top: 6px;
	right: 6px;
	border-left: 1px solid #e5e9f2;
	border-radius: 0 8px 8px 0;
	background: color-mix(in srgb, var(--primary-color, #717fe0) 6%, #ffffff);
}

.premium-form-surface .checkout-rounded-field.rs1-select2 .select2-container--default .select2-selection--single .select2-selection__arrow::after {
	content: "\f107";
	font-family: FontAwesome;
	font-size: 14px;
	color: var(--primary-color, #717fe0);
}

.premium-form-surface .select2-container--open .select2-selection--single {
	box-shadow: none;
}

.premium-form-surface .select2-dropdown {
	border: 1px solid #e5e9f2 !important;
	border-radius: 12px !important;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 14px 36px rgba(15, 23, 42, 0.14) !important;
	margin-top: 6px;
	z-index: 1300;
}

.premium-form-surface .select2-dropdown--above {
	margin-top: 0;
	margin-bottom: 6px;
}

.premium-form-surface .select2-results__options {
	max-height: 240px;
	padding: 6px 0;
}

.premium-form-surface .select2-container .select2-results__option {
	padding: 10px 16px;
	font-size: 14px;
	color: #334155;
	transition: background-color 0.15s ease, color 0.15s ease;
}

.premium-form-surface .select2-container .select2-results__option--highlighted[aria-selected] {
	background: color-mix(in srgb, var(--primary-color, #717fe0) 12%, #ffffff) !important;
	color: #1e293b !important;
}

.premium-form-surface .select2-container .select2-results__option[aria-selected="true"] {
	background: var(--primary-color, #717fe0) !important;
	color: var(--on-primary, #fff) !important;
}

.premium-form-surface .select2-search--dropdown {
	padding: 8px 10px 4px;
}

.premium-form-surface .select2-search--dropdown .select2-search__field {
	border: 1px solid #e5e9f2 !important;
	border-radius: 10px !important;
	padding: 8px 12px;
	font-size: 14px;
	color: #334155;
	outline: none;
}

.premium-form-surface .select2-search--dropdown .select2-search__field:focus {
	border-color: color-mix(in srgb, var(--primary-color, #717fe0) 45%, #e5e9f2) !important;
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary-color, #717fe0) 12%, transparent);
}

.address-modal-backdrop {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: rgba(15, 23, 42, 0.48);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
}

body.address-modal-open {
	overflow: hidden;
}

#addressModal.premium-form-surface {
	overflow: visible;
}

#addressModal.premium-form-surface .modal-content {
	overflow: visible;
}

#addressModal.premium-form-surface .modal-body {
	overflow-y: auto;
	overflow-x: visible;
}

.free-shipping-hint--summary .free-shipping-hint__text {
	white-space: normal;
}

.free-shipping-hint--summary.free-shipping-hint--qualified {
	background: color-mix(in srgb, #15803d 8%, #ffffff);
	border-color: color-mix(in srgb, #15803d 18%, #e8f5ec);
}

/* Cart sticky bar (cartStickyBar.tag) — mobile fixed, desktop floating, embedded footers */
.cart-sticky-bar {
	display: none;
}

.cart-sticky-bar-spacer {
	display: none;
	height: 0;
}

.checkout-sticky-dock {
	display: none;
}

@media (max-width: 991px) {
	.checkout-sticky-dock {
		display: block;
		position: static;
		height: 0;
		overflow: visible;
		pointer-events: none;
	}

	.checkout-sticky-dock .wishlist-sticky-dock {
		display: none !important;
	}

	.checkout-sticky-dock .btn-back-to-top {
		position: fixed;
		right: calc(20px + env(safe-area-inset-right, 0px));
		bottom: calc(20px + env(safe-area-inset-bottom, 0px));
		z-index: 1050;
		pointer-events: auto;
	}

	body.has-cart-sticky-bar .checkout-sticky-dock .btn-back-to-top {
		bottom: calc(var(--cart-sticky-bar-backtotop) + env(safe-area-inset-bottom, 0px));
		z-index: 1101;
	}

	body.checkout-order-page .checkout-sticky-dock > :not(.btn-back-to-top),
	body.shopping-cart-page .checkout-sticky-dock > :not(.btn-back-to-top) {
		display: none !important;
	}
}

.cart-sticky-bar-mount--embedded > .cart-sticky-bar--interactive {
	display: block !important;
	position: static;
	padding: 0;
	pointer-events: auto;
	background: transparent;
	box-shadow: none;
}

.cart-sticky-bar--interactive .cart-sticky-bar__surface {
	position: relative;
	overflow: hidden;
	border-radius: 18px;
	cursor: pointer;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.96) 100%);
	border: 1px solid rgba(226, 232, 240, 0.95);
	box-shadow:
		0 -10px 28px rgba(15, 23, 42, 0.12),
		0 2px 8px rgba(15, 23, 42, 0.04),
		inset 0 1px 0 rgba(255, 255, 255, 0.85);
	backdrop-filter: saturate(180%) blur(14px);
	pointer-events: auto;
}

.cart-sticky-bar--embedded .cart-sticky-bar__surface {
	cursor: default;
}

.cart-sticky-bar--interactive .cart-sticky-bar__accent {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 3px;
		background: linear-gradient(
			90deg,
			color-mix(in srgb, var(--primary-color, #717fe0) 20%, transparent) 0%,
			var(--primary-color, #717fe0) 50%,
			color-mix(in srgb, var(--primary-color, #717fe0) 20%, transparent) 100%
		);
	}

.cart-sticky-bar--interactive .cart-sticky-bar__content {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 0.85rem;
		min-height: 58px;
		padding: 0.7rem 0.95rem;
	}

.cart-sticky-bar--interactive .cart-sticky-bar__leading {
		display: flex;
		align-items: center;
		gap: 0.65rem;
		min-width: 0;
		flex: 1 1 auto;
	}

.cart-sticky-bar--interactive .cart-sticky-bar__icon {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 38px;
		height: 38px;
		border-radius: 12px;
		background: color-mix(in srgb, var(--primary-color, #717fe0) 12%, #fff);
		color: var(--primary-color, #717fe0);
		font-size: 1.05rem;
		flex: 0 0 auto;
		box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--primary-color, #717fe0) 18%, transparent);
	}

.cart-sticky-bar--interactive .cart-sticky-bar__meta {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 0.28rem;
		min-width: 0;
	}

.cart-sticky-bar--interactive .cart-sticky-bar__eyebrow {
		font-size: 0.68rem;
		font-weight: 700;
		letter-spacing: 0.08em;
		text-transform: uppercase;
		color: #64748b;
		line-height: 1.1;
	}

.cart-sticky-bar--interactive .cart-sticky-bar__qty-pill {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-width: 1.35rem;
		height: 1.35rem;
		padding: 0 0.45rem;
		border-radius: 999px;
		background: #eef2ff;
		color: var(--primary-color, #717fe0);
		font-size: 0.72rem;
		font-weight: 700;
		line-height: 1;
		box-shadow: inset 0 0 0 1px rgba(113, 127, 224, 0.18);
	}

.cart-sticky-bar--interactive .cart-sticky-bar__price-wrap {
		flex: 0 0 auto;
		max-width: 52%;
		text-align: right;
	}

.cart-sticky-bar--interactive .cart-sticky-bar__price.ecom-price {
		display: inline-flex;
		align-items: baseline;
		justify-content: flex-end;
		flex-wrap: wrap;
		gap: 0.2rem;
		font-size: 1.2rem;
		font-weight: 800;
		line-height: 1.15;
		color: #0f172a;
		letter-spacing: -0.02em;
	}

.cart-sticky-bar--interactive .cart-sticky-bar__price.ecom-price .ecom-price__currency {
		font-size: 0.78em;
		font-weight: 700;
		opacity: 0.82;
	}

.cart-sticky-bar--interactive .cart-sticky-bar__price.ecom-price--discounted {
		flex-direction: column;
		align-items: flex-end;
		gap: 0.08rem;
	}

.cart-sticky-bar--interactive .cart-sticky-bar__price.ecom-price--discounted .ecom-price__current {
		font-size: 1.2rem;
		font-weight: 800;
		color: #c2410c;
	}

.cart-sticky-bar--interactive .cart-sticky-bar__price.ecom-price--discounted .ecom-price__old {
		font-size: 0.78rem;
		font-weight: 600;
		opacity: 0.72;
		color: #94a3b8;
		text-decoration: line-through;
		text-decoration-thickness: 1.5px;
	}

.cart-sticky-bar--interactive .cart-sticky-bar__cta {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		flex: 0 0 auto;
		min-height: 40px;
		padding: 0.45rem 0.85rem;
		border-radius: 999px;
		background: var(--primary-color, #717fe0);
		color: #fff;
		font-size: 0.76rem;
		font-weight: 700;
		line-height: 1;
		white-space: nowrap;
		box-shadow: 0 6px 14px rgba(113, 127, 224, 0.35);
	}

.cart-sticky-bar--interactive .cart-sticky-bar__cta:hover,
.cart-sticky-bar--interactive .cart-sticky-bar__cta:focus-visible {
		color: #fff;
		filter: brightness(1.05);
	}

.cart-sticky-bar--enter .cart-sticky-bar__surface {
	animation: cart-sticky-bar-enter 0.58s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.cart-sticky-bar--updated .cart-sticky-bar__surface {
	animation: cart-sticky-bar-updated-glow 0.82s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.cart-sticky-bar--updated .cart-sticky-bar__icon {
	animation: cart-sticky-bar-icon-pop 0.62s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.cart-sticky-bar--updated .cart-sticky-bar__qty-pill {
	animation: cart-sticky-bar-qty-pop 0.62s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.cart-sticky-bar--updated .cart-sticky-bar__price-wrap {
	animation: cart-sticky-bar-price-flash 0.72s ease-out both;
}

.cart-sticky-bar--updated .cart-sticky-bar__accent::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		transparent 0%,
		rgba(255, 255, 255, 0.95) 48%,
		transparent 100%
	);
	animation: cart-sticky-bar-accent-shimmer 0.82s ease-out both;
	pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
	.cart-sticky-bar--enter .cart-sticky-bar__surface,
	.cart-sticky-bar--updated .cart-sticky-bar__surface,
	.cart-sticky-bar--updated .cart-sticky-bar__icon,
	.cart-sticky-bar--updated .cart-sticky-bar__qty-pill,
	.cart-sticky-bar--updated .cart-sticky-bar__price-wrap,
	.cart-sticky-bar--updated .cart-sticky-bar__accent::after {
		animation: none !important;
	}

	.js-panel-cart .header-cart.mini-drawer-panel,
	.js-panel-cart.show-header-cart .header-cart.mini-drawer-panel,
	.js-panel-wishlist .header-cart.mini-drawer-panel,
	.js-panel-wishlist.show-header-wishlist .header-cart.mini-drawer-panel {
		transition: none !important;
		transform: none !important;
	}
}

@media (max-width: 991px) {
	:root {
		--cart-sticky-bar-reserve: 9.25rem;
		--cart-sticky-bar-backtotop: calc(var(--cart-sticky-bar-reserve) + 0.75rem);
	}

	#checkout-sticky-bar-mount > .cart-sticky-bar--interactive:not(.cart-sticky-bar--embedded) {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 1100;
		display: block !important;
		padding: 0.55rem 0.85rem calc(0.55rem + env(safe-area-inset-bottom, 0px));
		pointer-events: none;
		background: #fff;
		box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.1);
	}

	body.has-cart-sticky-bar .cart-sticky-bar-spacer {
		display: block;
		width: 100%;
		height: var(--cart-sticky-bar-reserve);
		flex-shrink: 0;
		pointer-events: none;
	}

	body.has-cart-sticky-bar .btn-back-to-top {
		bottom: calc(var(--cart-sticky-bar-backtotop) + env(safe-area-inset-bottom, 0px));
		z-index: 1101;
	}

	body:not(.home-page) footer.site-footer {
		display: none !important;
	}
}

@media (min-width: 992px) {
	:root {
		--cart-sticky-dock-inset: 1.25rem;
		--cart-sticky-bar-reserve: 4.25rem;
		--cart-sticky-bar-backtotop: calc(var(--cart-sticky-bar-reserve) + var(--cart-sticky-dock-inset) + 0.5rem);
		--cart-sticky-popup-gap: 0.75rem;
		--desktop-drawer-width: min(440px, 92vw);
	}

	body.checkout-order-page .checkout-sticky-dock > :not(.btn-back-to-top),
	body.shopping-cart-page .checkout-sticky-dock > :not(.btn-back-to-top) {
		display: none !important;
	}

	.checkout-sticky-dock {
		position: fixed;
		right: var(--cart-sticky-dock-inset);
		left: auto;
		bottom: var(--cart-sticky-dock-inset);
		z-index: 1100;
		display: flex;
		align-items: center;
		justify-content: flex-end;
		gap: 0.75rem;
		pointer-events: none;
		isolation: isolate;
	}

	.checkout-sticky-dock .btn-back-to-top {
		position: static;
		right: auto;
		bottom: auto;
		flex: 0 0 auto;
		width: 48px;
		height: 48px;
		margin: 0;
		pointer-events: auto;
	}

	.wishlist-sticky-dock {
		position: relative;
		z-index: 1;
		flex: 0 0 auto;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		box-sizing: border-box;
		width: 56px;
		height: 56px;
		margin: 0;
		padding: 0;
		border: 1px solid rgba(226, 232, 240, 0.95);
		border-radius: 18px;
		background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.96) 100%);
		box-shadow:
			0 14px 36px rgba(15, 23, 42, 0.16),
			0 4px 12px rgba(15, 23, 42, 0.08),
			inset 0 1px 0 rgba(255, 255, 255, 0.92);
		color: var(--primary-color, #717fe0);
		font-size: 1.3rem;
		line-height: 1;
		cursor: pointer;
		pointer-events: auto;
		-webkit-tap-highlight-color: transparent;
		transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
	}

	.wishlist-sticky-dock i {
		display: block;
		line-height: 1;
	}

	.wishlist-sticky-dock:hover,
	.wishlist-sticky-dock:focus-visible {
		transform: translateY(-2px);
		box-shadow:
			0 18px 40px rgba(15, 23, 42, 0.16),
			0 6px 16px rgba(15, 23, 42, 0.1),
			inset 0 1px 0 rgba(255, 255, 255, 0.95);
		filter: brightness(1.02);
	}

	.wishlist-sticky-dock.icon-header-noti::after {
		top: -5px;
		right: -5px;
		min-width: 17px;
		height: 17px;
		line-height: 17px;
		font-size: 10px;
		font-weight: 700;
		border-radius: 999px;
		background-color: var(--primary-color, #717fe0);
		box-shadow: 0 2px 6px color-mix(in srgb, var(--primary-color, #717fe0) 35%, transparent);
		z-index: 2;
	}

	.wishlist-sticky-dock[data-notify="0"]::after {
		display: none;
	}

	body.wishlist-drawer-open .wishlist-sticky-dock,
	body.wishlist-drawer-closing .wishlist-sticky-dock {
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
	}

	#checkout-sticky-bar-mount {
		position: relative;
		z-index: 2;
		flex: 0 1 auto;
		min-width: 0;
	}

	#checkout-sticky-bar-mount > .cart-sticky-bar--dock {
		position: static;
		transform: none;
		width: auto;
		max-width: min(19.5rem, calc(100vw - 2.5rem));
		display: block !important;
		padding: 0;
		pointer-events: none;
		background: transparent;
		box-shadow: none;
	}

	#checkout-sticky-bar-mount > .cart-sticky-bar--dock .cart-sticky-bar__surface {
		box-shadow:
			0 14px 36px rgba(15, 23, 42, 0.16),
			0 4px 12px rgba(15, 23, 42, 0.08),
			inset 0 1px 0 rgba(255, 255, 255, 0.92);
	}

	#checkout-sticky-bar-mount > .cart-sticky-bar--dock .free-shipping-hint--sticky,
	#checkout-sticky-bar-mount > .cart-sticky-bar--dock .cart-sticky-bar__cta {
		display: none !important;
	}

	#checkout-sticky-bar-mount > .cart-sticky-bar--dock .cart-sticky-bar__surface {
		min-height: 56px;
	}

	#checkout-sticky-bar-mount > .cart-sticky-bar--dock .cart-sticky-bar__content {
		gap: 0.6rem;
		min-height: 56px;
		padding: 0.5rem 0.7rem 0.5rem 0.6rem;
	}

	#checkout-sticky-bar-mount > .cart-sticky-bar--dock .cart-sticky-bar__leading {
		position: relative;
		flex: 0 0 auto;
	}

	#checkout-sticky-bar-mount > .cart-sticky-bar--dock .cart-sticky-bar__meta {
		position: absolute;
		top: -5px;
		right: -7px;
		left: auto;
		z-index: 1;
	}

	#checkout-sticky-bar-mount > .cart-sticky-bar--dock .cart-sticky-bar__eyebrow {
		display: none;
	}

	#checkout-sticky-bar-mount > .cart-sticky-bar--dock .cart-sticky-bar__qty-pill {
		min-width: 1.15rem;
		height: 1.15rem;
		padding: 0 0.35rem;
		font-size: 0.65rem;
		box-shadow: 0 2px 6px rgba(15, 23, 42, 0.12);
	}

	#checkout-sticky-bar-mount > .cart-sticky-bar--dock .cart-sticky-bar__icon {
		width: 42px;
		height: 42px;
		border-radius: 14px;
	}

	#checkout-sticky-bar-mount > .cart-sticky-bar--dock .cart-sticky-bar__price-wrap {
		flex: 1 1 auto;
		max-width: none;
		min-width: 0;
	}

	#checkout-sticky-bar-mount > .cart-sticky-bar--dock .cart-sticky-bar__price.ecom-price {
		font-size: 1.05rem;
	}

	#checkout-sticky-bar-mount > .cart-sticky-bar--dock .cart-sticky-bar__price.ecom-price--discounted .ecom-price__current {
		font-size: 1.05rem;
	}

	body.has-cart-sticky-bar:not(.checkout-order-page):not(.shopping-cart-page) .cart-sticky-bar-spacer {
		display: none;
		height: 0;
	}

	.cart-sticky-bar--dock.cart-sticky-bar--enter .cart-sticky-bar__surface {
		animation: cart-sticky-bar-enter-dock 0.52s cubic-bezier(0.22, 1, 0.36, 1) both;
	}

	.cart-sticky-bar--dock.cart-sticky-bar--updated .cart-sticky-bar__surface {
		animation: cart-sticky-bar-updated-dock 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
	}

	/* Desktop cart + wishlist — tam yükseklik sağ drawer */
	.wrap-header-cart.js-panel-cart,
	.wrap-header-cart.js-panel-wishlist {
		z-index: 1105;
		-webkit-transition: background-color 0.32s ease, visibility 0s linear 0.32s;
		-o-transition: background-color 0.32s ease, visibility 0s linear 0.32s;
		transition: background-color 0.32s ease, visibility 0s linear 0.32s;
	}

	.wrap-header-cart.js-panel-cart.show-header-cart,
	.wrap-header-cart.js-panel-wishlist.show-header-wishlist,
	body.cart-drawer-open .wrap-header-cart.js-panel-cart,
	body.cart-drawer-closing .wrap-header-cart.js-panel-cart,
	body.wishlist-drawer-open .wrap-header-cart.js-panel-wishlist,
	body.wishlist-drawer-closing .wrap-header-cart.js-panel-wishlist {
		visibility: visible;
	}

	.wrap-header-cart.js-panel-cart.show-header-cart,
	.wrap-header-cart.js-panel-wishlist.show-header-wishlist,
	body.cart-drawer-open .wrap-header-cart.js-panel-cart,
	body.wishlist-drawer-open .wrap-header-cart.js-panel-wishlist {
		background-color: rgba(15, 23, 42, 0.45);
		pointer-events: auto;
		-webkit-transition: background-color 0.32s ease, visibility 0s;
		-o-transition: background-color 0.32s ease, visibility 0s;
		transition: background-color 0.32s ease, visibility 0s;
	}

	body.cart-drawer-closing .wrap-header-cart.js-panel-cart,
	body.wishlist-drawer-closing .wrap-header-cart.js-panel-wishlist {
		background-color: rgba(15, 23, 42, 0);
		pointer-events: none;
	}

	.js-panel-cart .header-cart.mini-drawer-panel,
	.js-panel-wishlist .header-cart.mini-drawer-panel {
		top: 0 !important;
		left: auto !important;
		right: 0 !important;
		bottom: auto !important;
		width: var(--desktop-drawer-width) !important;
		max-width: var(--desktop-drawer-width) !important;
		height: 100dvh !important;
		max-height: 100dvh !important;
		border-radius: 0;
		overflow: hidden;
		display: flex !important;
		flex-direction: column !important;
		opacity: 1;
		visibility: hidden;
		pointer-events: none;
		transform: translate3d(100%, 0, 0);
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
		box-shadow: -12px 0 40px rgba(15, 23, 42, 0.18);
		-webkit-transition:
			-webkit-transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
			visibility 0s linear 0.32s,
			box-shadow 0.32s ease;
		-o-transition:
			transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
			visibility 0s linear 0.32s,
			box-shadow 0.32s ease;
		transition:
			transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
			visibility 0s linear 0.32s,
			box-shadow 0.32s ease;
	}

	.js-panel-cart.show-header-cart .header-cart.mini-drawer-panel,
	.js-panel-wishlist.show-header-wishlist .header-cart.mini-drawer-panel,
	body.cart-drawer-open .js-panel-cart .header-cart.mini-drawer-panel,
	body.wishlist-drawer-open .js-panel-wishlist .header-cart.mini-drawer-panel {
		visibility: visible;
		pointer-events: auto;
		transform: translate3d(0, 0, 0);
		-webkit-transition:
			-webkit-transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
			visibility 0s,
			box-shadow 0.32s ease;
		-o-transition:
			transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
			visibility 0s,
			box-shadow 0.32s ease;
		transition:
			transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
			visibility 0s,
			box-shadow 0.32s ease;
	}

	body.cart-drawer-closing .js-panel-cart .header-cart.mini-drawer-panel,
	body.wishlist-drawer-closing .js-panel-wishlist .header-cart.mini-drawer-panel {
		visibility: visible;
		pointer-events: none;
		transform: translate3d(100%, 0, 0);
	}

	.js-panel-cart .header-cart.mini-drawer-panel::after,
	.js-panel-wishlist .header-cart.mini-drawer-panel::after {
		display: none;
	}

	.js-panel-cart .cart-panel-shell,
	.js-panel-wishlist .wishlist-panel-shell,
	.js-panel-wishlist .mini-drawer-body,
	.js-panel-wishlist .wishlist-scroll-area {
		min-height: 0;
		max-height: none;
	}

	/* Cart açık/kapanırken dış dock gizli; drawer footer'daki checkout bar kullanılır */
	body.cart-drawer-open #checkout-sticky-bar-mount > .cart-sticky-bar--dock,
	body.cart-drawer-closing #checkout-sticky-bar-mount > .cart-sticky-bar--dock,
	body.account-drawer-open #checkout-sticky-bar-mount > .cart-sticky-bar--dock {
		display: none !important;
		visibility: hidden !important;
		pointer-events: none !important;
	}

	body.wishlist-drawer-open #checkout-sticky-bar-mount > .cart-sticky-bar--dock,
	body.wishlist-drawer-closing #checkout-sticky-bar-mount > .cart-sticky-bar--dock {
		display: none !important;
		visibility: hidden !important;
		pointer-events: none !important;
	}

	body.account-drawer-open .wishlist-sticky-dock {
		opacity: 0 !important;
		visibility: hidden !important;
		pointer-events: none !important;
	}

	body.cart-drawer-open .js-panel-cart .mini-drawer-footer,
	body.cart-drawer-closing .js-panel-cart .mini-drawer-footer {
		display: block !important;
		padding: 0;
		border-top: 0;
		background: transparent;
	}

	body.cart-drawer-open .js-panel-cart .mini-drawer-footer .cart-sticky-bar--embedded .cart-sticky-bar__surface,
	body.cart-drawer-closing .js-panel-cart .mini-drawer-footer .cart-sticky-bar--embedded .cart-sticky-bar__surface {
		border-radius: 0;
		box-shadow: none;
		border-top: 1px solid rgba(226, 232, 240, 0.95);
	}

	body.cart-drawer-open .js-panel-cart .mini-drawer-footer .cart-sticky-bar__cta,
	body.cart-drawer-closing .js-panel-cart .mini-drawer-footer .cart-sticky-bar__cta {
		display: inline-flex !important;
	}

	#checkout-sticky-bar-mount > .cart-sticky-bar--dock {
		transition: opacity 0.2s ease, transform 0.2s ease;
	}

	body:not(.cart-drawer-open):not(.cart-drawer-closing):not(.wishlist-drawer-open):not(.wishlist-drawer-closing)
		#checkout-sticky-bar-mount > .cart-sticky-bar--dock {
		opacity: 1;
		transform: none;
	}
}

@keyframes cart-sticky-bar-enter-dock {
	0% {
		opacity: 0;
		transform: translateY(12px) scale(0.9);
	}
	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes cart-sticky-bar-updated-dock {
	0%, 100% {
		transform: scale(1);
	}
	42% {
		transform: scale(1.04);
	}
}

@keyframes cart-sticky-bar-enter {
	0% {
		opacity: 0;
		transform: translateY(calc(100% + 0.75rem)) scale(0.96);
	}
	68% {
		opacity: 1;
		transform: translateY(-5px) scale(1.01);
	}
	100% {
		transform: translateY(0) scale(1);
	}
}

@keyframes cart-sticky-bar-updated-glow {
	0% {
		transform: scale(1);
		box-shadow:
			0 -10px 28px rgba(15, 23, 42, 0.12),
			0 2px 8px rgba(15, 23, 42, 0.04),
			inset 0 1px 0 rgba(255, 255, 255, 0.85),
			0 0 0 0 color-mix(in srgb, var(--primary-color, #717fe0) 0%, transparent);
	}
	38% {
		transform: scale(1.015);
		box-shadow:
			0 -14px 34px rgba(15, 23, 42, 0.16),
			0 4px 12px rgba(15, 23, 42, 0.06),
			inset 0 1px 0 rgba(255, 255, 255, 0.92),
			0 0 0 5px color-mix(in srgb, var(--primary-color, #717fe0) 18%, transparent);
	}
	100% {
		transform: scale(1);
		box-shadow:
			0 -10px 28px rgba(15, 23, 42, 0.12),
			0 2px 8px rgba(15, 23, 42, 0.04),
			inset 0 1px 0 rgba(255, 255, 255, 0.85),
			0 0 0 0 color-mix(in srgb, var(--primary-color, #717fe0) 0%, transparent);
	}
}

@keyframes cart-sticky-bar-icon-pop {
	0%, 100% {
		transform: scale(1);
	}
	42% {
		transform: scale(1.14) rotate(-4deg);
	}
	72% {
		transform: scale(0.96) rotate(2deg);
	}
}

@keyframes cart-sticky-bar-qty-pop {
	0%, 100% {
		transform: scale(1);
	}
	40% {
		transform: scale(1.28);
	}
	70% {
		transform: scale(0.94);
	}
}

@keyframes cart-sticky-bar-price-flash {
	0%, 100% {
		transform: translateY(0);
		opacity: 1;
	}
	28% {
		transform: translateY(-2px);
		opacity: 1;
	}
	55% {
		transform: translateY(0);
		opacity: 0.88;
	}
}

@keyframes cart-sticky-bar-accent-shimmer {
	0% {
		transform: translateX(-120%);
		opacity: 0;
	}
	24% {
		opacity: 1;
	}
	100% {
		transform: translateX(120%);
		opacity: 0;
	}
}

/* Checkout page: qty + remove */
.checkout-order-page .checkout-order-cart-item.has-controls {
	grid-template-columns: 84px 1fr auto auto;
	grid-template-areas:
		"img info total actions"
		"img meta controls actions";
}

.checkout-order-page .checkout-order-cart-item.has-controls .checkout-cart-qty-control {
	justify-self: end;
	display: flex;
}

.checkout-order-page .checkout-order-cart-item .checkout-cart-actions {
	grid-area: actions;
	justify-self: end;
	align-self: center;
	display: inline-flex;
	align-items: center;
	margin-left: auto;
}

.checkout-order-page .checkout-cart-remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	padding: 0;
	border: 1px solid color-mix(in srgb, var(--primary-color, #717fe0) 22%, #e5e7eb);
	background: color-mix(in srgb, var(--primary-color, #717fe0) 10%, #ffffff);
	color: var(--primary-color, #717fe0);
	font-size: 1.45rem;
	line-height: 1;
	cursor: pointer;
	border-radius: 10px;
	transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.checkout-order-page .checkout-cart-remove:hover,
.checkout-order-page .checkout-cart-remove:focus-visible {
	color: color-mix(in srgb, var(--primary-color, #717fe0) 90%, #111827);
	background: color-mix(in srgb, var(--primary-color, #717fe0) 16%, #ffffff);
	border-color: color-mix(in srgb, var(--primary-color, #717fe0) 34%, #e5e7eb);
	outline: none;
}

.checkout-order-page .checkout-cart-img {
	display: block;
	color: inherit;
	text-decoration: none;
}

.checkout-order-page .checkout-cart-name {
	display: inline-block;
	color: #111827;
	font-weight: 600;
	text-decoration: none;
}

.checkout-order-page .checkout-cart-name:hover,
.checkout-order-page .checkout-cart-name:focus-visible {
	color: #374151;
}

.checkout-order-page .checkout-cart-name .cart-item-variant {
	color: #6b7280;
	font-weight: 400;
}

/* Checkout: saved address readonly preview */
.checkout-saved-address-preview .checkout-field-readonly.checkout-rounded-field {
	background: #f3f4f6;
	border-color: #e5e9f2;
	border-radius: 12px;
	overflow: hidden;
}

.checkout-saved-address-preview .checkout-field-readonly.checkout-rounded-field input,
.checkout-saved-address-preview .checkout-field-readonly.checkout-rounded-field textarea {
	border: 0;
	border-radius: 12px;
	background: transparent;
	color: #111827;
	cursor: default;
	pointer-events: none;
}

.checkout-saved-address-preview .checkout-field-readonly .select2-container--default .select2-selection--single {
	background: #f3f4f6;
	border-color: #e5e7eb;
	cursor: default;
}

.checkout-saved-address-preview .select2-container {
	pointer-events: none;
}

.checkout-order-page .checkout-order-cart-item.is-qty-pending {
	opacity: 0.72;
	pointer-events: none;
}

.checkout-order-page .checkout-order-cart-item.has-controls .checkout-cart-qty-control .wrap-num-produce,
#v-pills-cart .account-store-card__qty .wrap-num-produce,
.js-panel-cart .mini-cart-qty-ctrl .wrap-num-produce {
	width: 118px;
	max-width: 100%;
	height: 36px;
	display: flex;
	flex-wrap: nowrap !important;
	align-items: stretch;
	border: 1px solid color-mix(in srgb, var(--primary-color, #717fe0) 32%, #e5e7eb);
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 1px 8px rgba(17, 24, 39, 0.07);
	overflow: hidden;
}

.checkout-order-page .checkout-order-cart-item .checkout-qty-btn,
#v-pills-cart .account-store-card__qty .checkout-qty-btn,
.js-panel-cart .mini-cart-qty-ctrl .checkout-qty-btn {
	flex: 0 0 38px;
	min-width: 38px;
	height: 100%;
	border: none;
	color: var(--primary-color, #717fe0);
	background: color-mix(in srgb, var(--primary-color, #717fe0) 10%, #ffffff);
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}

.checkout-order-page .checkout-order-cart-item .checkout-qty-btn:active,
#v-pills-cart .account-store-card__qty .checkout-qty-btn:active,
.js-panel-cart .mini-cart-qty-ctrl .checkout-qty-btn:active {
	background: color-mix(in srgb, var(--primary-color, #717fe0) 18%, #ffffff);
}

.checkout-order-page .checkout-order-cart-item .checkout-qty-btn i,
#v-pills-cart .account-store-card__qty .checkout-qty-btn i,
.js-panel-cart .mini-cart-qty-ctrl .checkout-qty-btn i {
	font-size: 16px;
	line-height: 1;
}

.checkout-order-page .checkout-order-cart-item .checkout-qty-input,
#v-pills-cart .account-store-card__qty .checkout-qty-input,
.js-panel-cart .mini-cart-qty-ctrl .checkout-qty-input {
	flex: 1 1 auto;
	width: auto;
	min-width: 40px;
	text-align: center;
	padding: 0;
	font-size: 18px;
	font-weight: 700;
	color: #111827;
	font-family: var(--main-font);
	border: none;
	background: #f8f9fc;
	border-left: 1px solid #e5e7eb;
	border-right: 1px solid #e5e7eb;
}

#v-pills-cart .account-store-card__qty.mini-cart-qty-ctrl {
	flex-shrink: 0;
}

@media ( max-width : 767px) {
	.checkout-order-page .checkout-order-cart-item.has-controls {
		grid-template-columns: 96px minmax(0, 1fr) auto;
		grid-template-areas:
			"img info total"
			"controls controls actions";
		align-items: start;
		padding: 14px 14px 12px;
		column-gap: 14px;
		row-gap: 10px;
		border-radius: 12px;
	}

	.checkout-order-page .checkout-cart-img {
		width: 96px;
		height: 96px;
		border-radius: 10px;
	}

	.checkout-order-page .checkout-cart-info {
		padding-right: 6px;
		min-width: 0;
	}

	.checkout-order-page .checkout-cart-name {
		font-size: 15px;
		line-height: 1.35;
		word-break: break-word;
	}

	.checkout-order-page .checkout-cart-meta {
		display: none !important;
	}

	.checkout-order-page .checkout-cart-total {
		font-size: 17px;
		align-self: start;
		padding-top: 2px;
		padding-left: 8px;
	}

	.checkout-order-page .checkout-order-cart-item.has-controls .checkout-cart-qty-control {
		justify-self: stretch;
		width: 100%;
		margin-top: 2px;
		padding-top: 8px;
	}

	.checkout-order-page .checkout-order-cart-item.has-controls .checkout-cart-qty-control .wrap-num-produce {
		width: 118px;
		max-width: 100%;
	}

	.checkout-order-page .checkout-order-cart-item .checkout-cart-actions {
		padding-top: 10px;
	}
}

/* Checkout/Cart/Wishlist: same section background + header distance standard */
.checkout-order-page .checkout-page,
.shopping-cart-page .checkout-page,
.wishlist-page .checkout-page,
.other-page .checkout-page {
	background-color: #f9f9f9;
}

/* Category page: premium pill filter chips (web + mobile, theme-aligned) */
.category-page .filter-tope-group {
	position: relative;
	z-index: 10;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	row-gap: 10px;
}

.category-page .filter-tope-group button {
	-webkit-appearance: none;
	appearance: none;
	cursor: pointer;
	margin: 0 !important;
	padding: 8px 16px;
	min-height: 40px;
	border: 1px solid #e7e9ef !important;
	border-bottom: 1px solid #e7e9ef !important;
	border-radius: 999px !important;
	background: #fff;
	box-shadow: 0 1px 2px rgba(17, 24, 39, 0.05);
	font-family: var(--main-font);
	font-weight: 600;
	font-size: 13px;
	color: #667085 !important;
	line-height: 1.25;
	white-space: nowrap;
	text-decoration: none !important;
	transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease,
		box-shadow 0.2s ease;
}

.category-page .filter-tope-group button:hover,
.category-page .filter-tope-group button:focus {
	text-decoration: none !important;
	outline: none;
	border-color: color-mix(in srgb, var(--primary-color) 22%, #e7e9ef) !important;
	border-bottom-color: color-mix(in srgb, var(--primary-color) 22%, #e7e9ef) !important;
	color: color-mix(in srgb, var(--primary-color) 72%, #4b5563) !important;
	background: #fafbfc !important;
	box-shadow: 0 2px 8px rgba(17, 24, 39, 0.06);
}

.category-page .filter-tope-group button.how-active1 {
	border-color: color-mix(in srgb, var(--primary-color) 28%, #d7dbe7) !important;
	border-bottom-color: color-mix(in srgb, var(--primary-color) 28%, #d7dbe7) !important;
	background: color-mix(in srgb, var(--primary-color) 12%, #ffffff) !important;
	color: color-mix(in srgb, var(--primary-color) 88%, #1f2937) !important;
	box-shadow: 0 2px 10px color-mix(in srgb, var(--primary-color) 18%, transparent);
}

.category-page .filter-tope-group button.how-active1:hover,
.category-page .filter-tope-group button.how-active1:focus {
	border-color: color-mix(in srgb, var(--primary-color) 32%, #d7dbe7) !important;
	border-bottom-color: color-mix(in srgb, var(--primary-color) 32%, #d7dbe7) !important;
	color: color-mix(in srgb, var(--primary-color) 88%, #1f2937) !important;
	background: color-mix(in srgb, var(--primary-color) 14%, #ffffff) !important;
}

.category-page .filter-tope-group button.category-filter-child {
	font-size: 12px;
	padding: 7px 14px;
	min-height: 36px;
	color: #5c6574 !important;
}

@media ( min-width : 992px) {
	.category-page .main-content {
		padding-top: 110px !important;
	}
}

.checkout-cart-qty {
	grid-area: qty;
	justify-self: end;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 104px;
	height: 38px;
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 0 12px;
	font-size: 15px;
	font-weight: 600;
	color: #333;
	white-space: nowrap;
	font-family: var(--main-font);
}

.checkout-cart-actions {
	grid-column: 3;
	grid-row: 2;
	justify-self: end;
	align-self: center;
}

.checkout-cart-actions .btn-remove-item {
	margin-left: 0 !important;
	font-size: 26px;
	padding: 8px;
}

.checkout-cart-item.has-controls {
	grid-template-columns: 84px 1fr auto auto;
	grid-template-areas:
		"img info total actions"
		"img meta controls actions";
}

.checkout-cart-qty-control {
	grid-area: controls;
	justify-self: end;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.checkout-cart-item.has-controls .wrap-num-produce {
	width: 130px;
	height: 40px;
	display: flex;
	flex-wrap: nowrap !important;
}

.checkout-cart-item.has-controls .btn-num-produce-up,
.checkout-cart-item.has-controls .btn-num-produce-down {
	flex: 0 0 45px;
	min-width: 45px;
}

.checkout-cart-item.has-controls .num-produce {
	flex: 1 1 auto;
	width: auto;
	min-width: 40px;
	text-align: center;
	padding: 0;
	color: #333;
	font-family: var(--main-font);
}

.checkout-cart-item.has-controls .checkout-cart-actions {
	grid-area: actions;
	justify-self: end;
	align-self: center;
	display: inline-flex;
	align-items: center;
	margin-left: auto;
}

.checkout-cart-item.wishlist-card {
	grid-template-columns: 84px 1fr auto;
	grid-template-areas:
		"img info actions"
		"img meta actions";
}

.checkout-cart-item.wishlist-card .checkout-cart-actions {
	grid-area: actions;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	justify-self: end;
	justify-content: flex-end;
	align-self: center;
}

.checkout-cart-item.wishlist-card .wishlist-remove-btn {
	width: 34px;
	height: 34px;
	border: 1px solid #ececec;
	border-radius: 4px;
	background: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	padding: 0;
	color: #9a9a9a;
}

.checkout-cart-item.wishlist-card .wishlist-remove-btn:hover {
	color: #d32f2f;
	border-color: #f2c5c5;
	background: #fff5f5;
}

.checkout-cart-item.wishlist-card .checkout-cart-actions .size-103 {
	min-width: 132px;
}

.checkout-cart-item.wishlist-card .checkout-cart-meta {
	color: #444;
	font-weight: 500;
}

.checkout-cart-item.wishlist-card .checkout-cart-meta .wishlist-price-value {
	font-family: var(--main-font);
	font-weight: 700;
	color: #222;
}

@media ( max-width : 767px) {
	.main-content {
		padding-top: 14px !important;
	}
	.category-page .category-filter-wrap {
		padding-bottom: 18px !important;
	}
	.category-page .filter-tope-group {
		gap: 8px;
		row-gap: 8px;
	}
	.category-page .filter-tope-group button {
		padding: 7px 12px;
		min-height: 36px;
		font-size: 12px;
	}
	.category-page .filter-tope-group button.category-filter-child {
		padding: 6px 11px;
		min-height: 34px;
		font-size: 11px;
	}
	.checkout-order-page .checkout-page,
	.shopping-cart-page .checkout-page,
	.wishlist-page .checkout-page,
	.other-page .checkout-page {
		padding-top: 30px !important;
	}
	.checkout-order-page .checkout-page .flex-w.flex-sb-m.m-t-50,
	.other-page .checkout-page .other-page-wrapper.m-t-50 {
		margin-top: 10px !important;
	}
	.main-content {
		overflow-x: hidden;
	}
	.wrap-table-shopping-cart {
		border: 0 !important;
	}
	.checkout-cart-list {
		padding: 0;
	}
	.checkout-cart-item {
		grid-template-columns: 78px 1fr;
		grid-template-areas:
			"img info"
			"img meta"
			"qty total";
		align-items: center;
		padding: 12px;
		column-gap: 10px;
	}
	.checkout-cart-name {
		font-size: 15px;
	}
	.checkout-cart-total {
		font-size: 18px;
		justify-self: end;
		align-self: center;
	}
	.checkout-cart-qty {
		justify-self: start;
		min-width: 96px;
		height: 34px;
		font-size: 14px;
	}
	.checkout-cart-meta {
		font-size: 15px;
	}
	.checkout-cart-actions {
		grid-column: 2;
		grid-row: 2;
		justify-self: end;
	}
	.checkout-cart-item.has-controls {
		grid-template-columns: 78px 1fr auto;
		grid-template-areas:
			"img info total"
			"img meta total"
			"controls controls actions";
		row-gap: 10px;
	}
	/* checkout-order-page cart item spacing: see block above (96px / 14px gaps) */
	.checkout-cart-item.has-controls .checkout-cart-total {
		justify-self: end;
	}
	.checkout-cart-qty-control {
		justify-self: stretch;
		display: flex;
		justify-content: flex-start;
	}
	.checkout-cart-item.has-controls .wrap-num-produce {
		width: 138px;
		height: 38px;
		display: flex;
		flex-wrap: nowrap !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
	.checkout-cart-item.has-controls .btn-num-produce-up,
	.checkout-cart-item.has-controls .btn-num-produce-down {
		flex: 0 0 42px;
		min-width: 42px;
	}
	.checkout-cart-item.has-controls .num-produce {
		flex: 1 1 auto;
		width: auto;
		min-width: 48px;
		font-size: 14px;
	}
	.checkout-cart-item.has-controls .checkout-cart-actions {
		grid-area: actions;
		justify-self: end;
		margin-left: 0;
	}
	.checkout-cart-item.wishlist-card {
		grid-template-columns: 78px 1fr auto;
		grid-template-areas:
			"img info actions"
			"img meta actions";
	}
	.checkout-cart-item.wishlist-card .checkout-cart-actions {
		grid-area: actions;
		justify-self: end;
		justify-content: flex-end;
		align-items: center;
		width: auto;
	}
	.checkout-cart-item.wishlist-card .checkout-cart-actions .size-103 {
		min-width: 30px;
		width: 30px;
		height: 30px;
		padding: 0 !important;
		font-size: 0;
		border-radius: 4px;
	}
	.checkout-cart-item.wishlist-card .checkout-cart-actions .size-103 .m-r-5 {
		margin-right: 0 !important;
		font-size: 16px;
	}
	.checkout-cart-item.wishlist-card .wishlist-remove-btn {
		width: 30px;
		height: 30px;
		font-size: 16px;
	}
	.wishlist-page .checkout-cart-item.wishlist-card .checkout-cart-actions .size-103 {
		border-radius: 10px;
	}
}

/* Shared checkout typography */
.checkout-page, .checkout-page input, .checkout-page textarea,
.checkout-page select, .checkout-page button {
	font-family: var(--main-font);
	font-weight: 400;
}

.checkout-page .mtext-105, .checkout-page .mtext-109 {
	font-family: var(--main-font);
	font-weight: 500;
	letter-spacing: 0.2px;
}

.checkout-page .mtext-101, .checkout-page .mtext-110 {
	font-family: var(--main-font);
	font-weight: 600;
}

.checkout-page .stext-101, .checkout-page .stext-102,
.checkout-page .stext-103, .checkout-page .stext-104,
.checkout-page .stext-110, .checkout-page .stext-111 {
	font-family: var(--main-font);
	font-weight: 400;
}

/* Checkout / sepet / wishlist bölüm başlık ikonları — site primary */
.section-title-icon {
	color: var(--primary-color, #717fe0);
	margin-right: 10px;
	font-size: 1.15em;
	line-height: 1;
	vertical-align: -0.12em;
	display: inline-block;
}

.checkout-page input::placeholder, .checkout-page textarea::placeholder {
	font-family: var(--main-font);
	font-weight: 400;
	color: #8f8f8f;
}

/*//////////////////////////////////////////////////////////////////
[ Block1 ]*/
.block1 {
	position: relative;
	border: 1px solid #e6e6e6;
	border-radius: 10px;
	overflow: hidden;
}

.block1-txt {
	background-color: rgba(103, 117, 214, 0.0);
}

/*---------------------------------------------*/
.block1-name {
	color: #333;
}

.block1-info {
	color: #555;
}

/*---------------------------------------------*/
.block1-txt-child2 {
	border-bottom: 2px solid #fff;
	overflow: hidden;
	-webkit-transform: scaleX(0);
	-moz-transform: scaleX(0);
	-ms-transform: scaleX(0);
	-o-transform: scaleX(0);
	transform: scaleX(0);
}

.block1-link {
	-webkit-transform: translateY(250%);
	-moz-transform: translateY(250%);
	-ms-transform: translateY(250%);
	-o-transform: translateY(250%);
	transform: translateY(250%);
}

/*---------------------------------------------*/
.block1-txt:hover {
        /* Banner hover: tema rengi hafif kaplama (daha transparan) */
        background-color: color-mix(in srgb, var(--primary-color) 55%, transparent) !important;
        transition: all 0.4s;
    }

.block1-txt:hover .block1-txt-child2 {
	-webkit-transform: scaleX(1);
	-moz-transform: scaleX(1);
	-ms-transform: scaleX(1);
	-o-transform: scaleX(1);
	transform: scaleX(1);
}

.block1-txt:hover .block1-link {
	-webkit-transform: translateY(0%);
	-moz-transform: translateY(0%);
	-ms-transform: translateY(0%);
	-o-transform: translateY(0%);
	transform: translateY(0%);
}

.block1-txt:hover .block1-name, .block1-txt:hover .block1-info {
	color: #fff;
}

/*//////////////////////////////////////////////////////////////////
[ Homepage category tiles — editorial ]*/
.sec-banner {
	padding-top: 4.5rem;
	padding-bottom: 3.25rem;
}

.sec-banner-heading-wrap {
	padding-bottom: 1.5rem;
	min-width: 0;
	max-width: 100%;
}

.sec-banner-title {
	font-family: var(--accent-font);
	font-weight: 700;
	letter-spacing: 0.25px;
	margin: 0;
	max-width: 100%;
	overflow-wrap: anywhere;
	word-break: break-word;
	hyphens: auto;
}

.ltext-103.sec-banner-title,
.ltext-103.home-produces-title,
.ltext-103.home-blog-section__title {
	font-size: clamp(1.375rem, 4.25vw + 0.5rem, 2.25rem);
	line-height: 1.15;
}

.category-tile-grid {
	margin-left: -8px;
	margin-right: -8px;
}

.category-tile-grid__col {
	padding-left: 8px;
	padding-right: 8px;
}

.category-tile {
	display: block;
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 5;
	border-radius: 14px;
	overflow: hidden;
	background: #111;
	box-shadow: 0 10px 36px rgba(17, 24, 39, 0.1), 0 2px 8px rgba(17, 24, 39, 0.06);
	text-decoration: none;
	color: inherit;
	transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.category-tile:hover,
.category-tile:focus-visible {
	text-decoration: none;
	color: inherit;
	box-shadow: 0 16px 48px rgba(17, 24, 39, 0.16), 0 4px 12px rgba(17, 24, 39, 0.08);
	transform: translateY(-2px);
}

.category-tile:focus-visible {
	outline: 2px solid var(--primary-color, #717fe0);
	outline-offset: 3px;
}

.category-tile__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.category-tile__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category-tile__scrim {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(180deg,
			rgba(0, 0, 0, 0) 32%,
			rgba(0, 0, 0, 0.18) 55%,
			rgba(0, 0, 0, 0.62) 100%);
	transition: background 0.4s ease;
}

.category-tile__content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.25rem;
	padding: 0.875rem 0.75rem 0.75rem;
}

.category-tile__title {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 0;
	font-family: var(--accent-font);
	font-size: 1.0625rem;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.02em;
	color: #ffffff;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.category-tile__subtitle {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 0;
	font-family: var(--main-font);
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.82);
}

.category-tile__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	margin-top: 0.3rem;
	padding-bottom: 2px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.45);
	font-family: var(--main-font);
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #ffffff;
	transition: gap 0.25s ease, border-color 0.25s ease;
}

.category-tile__cta .fa {
	font-size: 0.8rem;
	line-height: 1;
	transition: transform 0.25s ease;
}

.category-tile:hover .category-tile__media img,
.category-tile:focus-visible .category-tile__media img {
	transform: scale(1.05);
}

.category-tile:hover .category-tile__scrim,
.category-tile:focus-visible .category-tile__scrim {
	background: linear-gradient(180deg,
			rgba(0, 0, 0, 0) 22%,
			rgba(0, 0, 0, 0.28) 50%,
			rgba(0, 0, 0, 0.78) 100%);
}

.category-tile:hover .category-tile__cta,
.category-tile:focus-visible .category-tile__cta {
	gap: 0.5rem;
	border-color: #ffffff;
}

.category-tile:hover .category-tile__cta .fa,
.category-tile:focus-visible .category-tile__cta .fa {
	transform: translateX(3px);
}

@media (min-width: 992px) {
	.category-tile-grid {
		margin-left: -12px;
		margin-right: -12px;
	}

	.category-tile-grid__col {
		padding-left: 12px;
		padding-right: 12px;
	}

	.category-tile__title {
		font-size: 1.0625rem;
	}

	.category-tile__content {
		padding: 0.9375rem 0.8125rem 0.8125rem;
	}
}

@media (min-width: 1400px) {
	.category-tile-grid > .col-lg-4 {
		flex: 0 0 25%;
		max-width: 25%;
	}

	.category-tile__title {
		font-size: 1.125rem;
	}

	.category-tile__subtitle {
		font-size: 0.8125rem;
	}

	.category-tile__cta {
		font-size: 0.6875rem;
	}

	.category-tile__content {
		padding: 1rem 0.875rem 0.875rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.category-tile,
	.category-tile__media img,
	.category-tile__scrim,
	.category-tile__cta,
	.category-tile__cta .fa {
		transition: none;
	}

	.category-tile:hover,
	.category-tile:focus-visible {
		transform: none;
	}

	.category-tile:hover .category-tile__media img,
	.category-tile:focus-visible .category-tile__media img {
		transform: none;
	}
}

@media (max-width: 767px) {
	.sec-banner {
		padding-top: 3rem;
		padding-bottom: 2rem;
	}

	.sec-banner-heading-wrap {
		padding-bottom: 1rem;
	}

	.category-tile-grid {
		margin-left: -8px;
		margin-right: -8px;
	}

	.category-tile-grid__col {
		padding-left: 8px;
		padding-right: 8px;
	}

	.category-tile {
		border-radius: 12px;
	}

	.category-tile__content {
		padding: 0.75rem 0.6875rem 0.6875rem;
	}

	.category-tile__title {
		font-size: 0.9375rem;
	}

	.category-tile__subtitle {
		font-size: 0.6875rem;
	}

	.category-tile__cta {
		font-size: 0.625rem;
		margin-top: 0.25rem;
	}
}

/*//////////////////////////////////////////////////////////////////
[ Block2 ]*/
/*------------------------------------------------------------------
[ PRODUCT IMAGE RATIO FIX ]
-------------------------------------------------------------------*/
/* Ürün resimlerinin olduğu konteynırı sabitliyoruz */
.block2-pic {
	width: 100%;
	height: 390px; /* Temanın standart dikey yüksekliği yaklaşık budur */
	display: block;
	position: relative; /* Butonların buna göre konumlanması şart */
	overflow: hidden;
	background-color: #f7f7f7;
	border-radius: 10px;
}

/* Low-stock labels — unified pill + pulse (cards, cart, wishlist, detail) */
@keyframes low-stock-pulse {
	0%,
	100% {
		opacity: 1;
		transform: scale(1);
		box-shadow: 0 2px 10px color-mix(in srgb, var(--primary-color, #717fe0) 38%, transparent);
	}
	50% {
		opacity: 0.82;
		transform: scale(1.07);
		box-shadow: 0 4px 18px color-mix(in srgb, var(--primary-color, #717fe0) 62%, transparent);
	}
}

@keyframes discount-badge-pulse {
	0%,
	100% {
		opacity: 1;
		transform: scale(1);
		box-shadow:
			0 4px 16px rgba(234, 88, 12, 0.38),
			inset 0 1px 0 rgba(255, 255, 255, 0.24);
	}
	50% {
		opacity: 0.84;
		transform: scale(1.07);
		box-shadow:
			0 6px 22px rgba(234, 88, 12, 0.58),
			inset 0 1px 0 rgba(255, 255, 255, 0.32);
	}
}

.block2-stock-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	max-width: 100%;
	padding: 0.3125rem 0.5625rem 0.3125rem 0.4375rem;
	border-radius: 0.5rem;
	font-family: var(--main-font, Poppins, sans-serif);
	font-size: 0.625rem;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	white-space: nowrap;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.18);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 10px rgba(15, 23, 42, 0.14);
}

.block2-stock-badge__icon {
	flex-shrink: 0;
	width: 0.75rem;
	height: 0.75rem;
	opacity: 0.95;
}

.block2-stock-badge__text {
	overflow: hidden;
	text-overflow: ellipsis;
	min-width: 0;
}

.block2-stock-badge--out {
	color: #fff;
	background: rgba(17, 24, 39, 0.84);
	border-color: rgba(255, 255, 255, 0.12);
}

.block2-stock-badge--low {
	color: #fff;
	background: color-mix(in srgb, var(--primary-color, #717fe0) 88%, #1e1b4b);
	border-color: rgba(255, 255, 255, 0.2);
	box-shadow: 0 2px 12px color-mix(in srgb, var(--primary-color, #717fe0) 34%, transparent);
	animation: low-stock-pulse 1.35s ease-in-out infinite;
}

.block2-low-stock-badge:not(.block2-stock-badge),
.line-item-low-stock-badge {
	font-family: var(--main-font, Poppins, sans-serif);
	font-size: 10px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.02em;
	color: var(--on-primary, #fff);
	background: var(--primary-color, #717fe0);
	border-radius: 999px;
	padding: 3px 8px;
	box-shadow: 0 2px 10px color-mix(in srgb, var(--primary-color, #717fe0) 38%, transparent);
	animation: low-stock-pulse 1.35s ease-in-out infinite;
}

.block2-out-of-stock-badge:not(.block2-stock-badge) {
	font-family: var(--main-font, Poppins, sans-serif);
	font-size: 10px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.02em;
	color: #ffffff;
	background: #dc2626;
	border-radius: 999px;
	padding: 3px 8px;
	box-shadow: 0 2px 10px rgba(220, 38, 38, 0.38);
}

.line-item-out-of-stock-badge {
	display: inline-block;
	width: fit-content;
	max-width: 100%;
	margin: 0;
	font-family: var(--main-font, Poppins, sans-serif);
	font-size: 10px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.02em;
	color: #ffffff;
	background: #dc2626;
	border-radius: 999px;
	padding: 3px 8px;
	box-shadow: 0 2px 10px rgba(220, 38, 38, 0.38);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	vertical-align: top;
}

/* Product card corner badges — shared inset / height */
.block2-pic {
	--block2-badge-inset: 8px;
	--block2-badge-size: 18px;
}

@keyframes block2-badge-text-blink {
	0%,
	92%,
	100% {
		opacity: 1;
	}
	94% {
		opacity: 0.18;
	}
	96% {
		opacity: 1;
	}
	98% {
		opacity: 0.42;
	}
}

.block2-starred-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	width: max-content;
	max-width: 100%;
	padding: 0.3125rem 0.5625rem 0.3125rem 0.4375rem;
	border-radius: 0.5rem;
	font-family: var(--main-font, Poppins, sans-serif);
	font-size: 0.625rem;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #fff;
	background: linear-gradient(180deg, #f97316 0%, #ea580c 100%);
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 2px 10px rgba(234, 88, 12, 0.28);
}

.block2-starred-badge__icon {
	flex-shrink: 0;
	width: 0.75rem;
	height: 0.75rem;
	font-size: 0.75rem;
	line-height: 1;
	color: #fff7ed;
}

.block2-starred-badge__text {
	white-space: nowrap;
}

/* Stock badge — top left on product cards */
.block2-pic-badges--stock {
	position: absolute;
	top: var(--block2-badge-inset);
	left: var(--block2-badge-inset);
	z-index: 5;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.22rem;
	width: max-content;
	max-width: calc(100% - var(--block2-badge-size) - var(--block2-badge-inset) * 2 - 8px);
	pointer-events: none;
}

.block2-pic-badges--stock:empty {
	display: none;
}

.block2-pic-badges--stock .block2-stock-badge,
.block2-pic-badges--stock .block2-starred-badge {
	position: static;
	box-sizing: border-box;
	width: max-content;
	max-width: 100%;
	padding: 0.3125rem 0.5625rem 0.3125rem 0.4375rem;
	border-radius: 0.5rem;
	font-size: 0.625rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	line-height: 1.2;
	justify-content: flex-start;
}

.block2-pic-badges--stock .block2-starred-badge {
	flex-shrink: 0;
}

.block2-pic-badges--stock .block2-stock-badge__text,
.block2-pic-badges--stock .block2-starred-badge__text {
	overflow: visible;
	text-overflow: clip;
	white-space: nowrap;
	min-width: 0;
	animation: block2-badge-text-blink 10s ease-in-out infinite;
}

.block2-pic-badges--stock .block2-stock-badge--low {
	animation: none;
	box-shadow: 0 2px 10px color-mix(in srgb, var(--primary-color, #717fe0) 28%, transparent);
}

.block2-pic-badges--stock .block2-stock-badge--out {
	background: rgba(30, 41, 59, 0.9);
	border-color: rgba(255, 255, 255, 0.14);
	box-shadow: 0 2px 10px rgba(15, 23, 42, 0.22);
}

.block2-pic-badges--discount {
	position: absolute;
	right: var(--block2-badge-inset);
	bottom: var(--block2-badge-inset);
	z-index: 6;
	max-width: calc(100% - var(--block2-badge-inset) * 2);
	pointer-events: none;
}

.block2-discount-badge {
	display: inline-flex;
	align-items: baseline;
	gap: 0.22rem;
	padding: 0.38rem 0.58rem 0.36rem 0.5rem;
	border-radius: 0.5rem;
	font-family: var(--main-font, Poppins, sans-serif);
	line-height: 1;
	color: #fff;
	white-space: nowrap;
	background: linear-gradient(135deg, rgba(234, 88, 12, 0.95) 0%, rgba(194, 65, 12, 0.98) 100%);
	border: 1px solid rgba(255, 255, 255, 0.3);
	box-shadow:
		0 4px 16px rgba(234, 88, 12, 0.38),
		inset 0 1px 0 rgba(255, 255, 255, 0.24);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	animation: discount-badge-pulse 1.35s ease-in-out infinite;
}

.block2-discount-badge__value {
	font-size: 0.8125rem;
	font-weight: 800;
	letter-spacing: -0.04em;
}

.block2-discount-badge__label {
	font-size: 0.625rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	opacity: 0.96;
}

.block2-price-wrap {
	display: block;
}

.block2-price {
	display: inline-flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 0.25em;
	font-variant-numeric: tabular-nums;
}

.block2-price--discounted {
	flex-direction: column;
	align-items: flex-start;
	gap: 0.1em;
}

.block2-price__old {
	font-size: 0.88em;
	font-weight: 500;
	color: #9ca3af;
	text-decoration: line-through;
	text-decoration-thickness: 1.5px;
}

.block2-price__current {
	font-weight: 700;
	color: #c2410c;
}

.block2-price--discounted .block2-price__current {
	font-size: 1.05em;
}

.block2-price__currency {
	font-weight: 600;
	font-size: 0.92em;
}

.line-item-low-stock-badge {
	display: inline-block;
	width: fit-content;
	max-width: 100%;
	margin: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	vertical-align: top;
}

.header-cart-item-txt .mini-cart-stock-slot,
.wishlist-header-content .mini-cart-stock-slot {
	margin: 4px 0 10px;
	min-height: 0;
}

.mini-cart-stock-slot:empty {
	display: none;
	margin: 0;
	padding: 0;
}

.header-cart-item-txt .mini-cart-stock-slot .line-item-low-stock-badge {
	display: inline-block;
	max-width: 100%;
}

.header-cart-item-txt .mini-cart-stock-slot .line-item-out-of-stock-badge,
.wishlist-card .checkout-cart-info .line-item-out-of-stock-badge,
.account-store-card__badge-slot .line-item-out-of-stock-badge {
	display: inline-block;
	max-width: 100%;
}

.checkout-cart-info .line-item-low-stock-badge,
.wishlist-card .checkout-cart-info .line-item-low-stock-badge {
	margin: 4px 0 2px;
}

.header-cart-item-txt .mini-cart-qty-ctrl {
	margin-top: 0;
	flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
	.block2-low-stock-badge,
	.block2-stock-badge--low,
	.block2-discount-badge,
	.block2-pic-badges--stock .block2-stock-badge__text,
	.block2-pic-badges--stock .block2-starred-badge__text,
	.mini-drawer-item-img .block2-discount-badge,
	.line-item-low-stock-badge,
	.sec-produce-detail .produce-detail-notice,
	.sec-produce-detail .produce-detail-notice[data-notice-type="stock-low"],
	.card-quick-cart-modal .produce-detail-notice,
	.card-quick-cart-modal .produce-detail-notice[data-notice-type="stock-low"] {
		animation: none;
	}
}

.block2-pic-slider {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.block2-pic-slider__viewport {
	width: 100%;
	height: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
	touch-action: manipulation;
	overscroll-behavior-x: contain;
	overscroll-behavior-y: auto;
}

.block2-pic-slider__viewport::-webkit-scrollbar {
	display: none;
}

.block2-pic-slider__track {
	display: flex;
	height: 100%;
}

.block2-pic-slider__slide {
	flex: 0 0 100%;
	width: 100%;
	height: 100%;
	scroll-snap-align: start;
	scroll-snap-stop: always;
	position: relative;
}

.block2-pic-slider__slide img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.block2-pic-slider__dots {
	position: absolute;
	left: var(--block2-badge-inset, 8px);
	bottom: var(--block2-badge-inset, 8px);
	display: flex;
	align-items: center;
	gap: 5px;
	z-index: 6;
	pointer-events: auto;
	max-width: calc(100% - 5.5rem);
	flex-wrap: wrap;
	justify-content: flex-start;
}

.block2-pic--has-slider .block2-pic-badges--discount {
	z-index: 7;
}

.block2-pic-slider__dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	border: none;
	padding: 0;
	background: rgba(255, 255, 255, 0.55);
	box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.14);
	cursor: pointer;
	transition: transform 0.2s ease, background-color 0.2s ease;
	flex-shrink: 0;
}

.block2-pic-slider__dot.is-active {
	background: #fff;
	transform: scale(1.25);
}

.block2-pic-slider__dot:focus-visible {
	outline: 2px solid var(--primary-color, #717fe0);
	outline-offset: 2px;
}

.block2-pic img {
	width: 100%;
	height: 100%;
	object-fit: cover; /* Resmi kutuya sığdırır ve hizalar */
	display: block;
}

/* Quick View butonunun üzerine binmesini sağlıyoruz */
.block2-btn {
	bottom: -50px; /* Başlangıçta gizli (temada böyle) */
}

.block2-pic:hover .block2-btn {
	bottom: 20px; /* Hover yapınca aşağıdan yukarı süzülsün */
}

.block2-btn {
	position: absolute;
	bottom: -50px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}

.block2-pic:hover .block2-btn {
	bottom: 20px;
}

/*---------------------------------------------*/
.block2-txt-child1 {
	width: calc(100% - 30px);
}

.block2-txt-child2 {
	width: 30px;
}

.block2 .stext-105.cl3 {
	font-family: var(--main-font);
	font-weight: 700;
	letter-spacing: 0.15px;
	color: #1f2937;
}

/* Shared star rating (product cards, detail, account) */
.rating-stars {
	--rating: 0;
	--star-size: 1.1rem;
	--star-gap: 0.2rem;
	--star-empty: #d4d4d8;
	--star-active: var(--primary-color, #717fe0);
	position: relative;
	display: inline-flex;
	align-items: center;
	height: var(--star-size);
	flex-shrink: 0;
}

.rating-stars__empty,
.rating-stars__full {
	display: inline-flex;
	gap: var(--star-gap);
}

.rating-stars__empty {
	color: var(--star-empty);
}

.rating-stars__empty .rating-stars__glyph path {
	fill: none;
	stroke: currentColor;
	stroke-width: 1.35;
}

.rating-stars__full {
	position: absolute;
	left: 0;
	top: 0;
	color: var(--star-active);
	overflow: hidden;
	white-space: nowrap;
	width: calc(var(--rating) / 5 * 100%);
}

.rating-stars__full .rating-stars__glyph path {
	fill: currentColor;
	stroke: none;
}

.rating-stars__glyph {
	width: var(--star-size);
	height: var(--star-size);
	flex-shrink: 0;
	display: block;
}

.rating-stars--card {
	--star-size: 0.8rem;
	--star-gap: 0.1rem;
}

.block2-card-rating {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin: 0;
	padding: 0.22rem 0.55rem 0.22rem 0.4rem;
	border-radius: 999px;
	background: color-mix(in srgb, var(--primary-color, #717fe0) 9%, #ffffff);
	border: 1px solid color-mix(in srgb, var(--primary-color, #717fe0) 16%, #eef0f4);
	box-shadow: 0 1px 2px color-mix(in srgb, var(--primary-color, #717fe0) 6%, transparent);
	width: fit-content;
	max-width: 100%;
	flex-shrink: 0;
}

.block2-txt--split {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	width: 100%;
}

.block2-txt--split .block2-txt__row {
	width: 100%;
}

.block2-txt--split .block2-txt__row--head {
	align-items: center;
}

.block2-txt--split .block2-txt__row--head .block2-txt-child1 {
	width: calc(100% - 84px);
	flex: 1;
	min-width: 0;
}

.block2-card-actions {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	flex-shrink: 0;
}

.block2-card-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.125rem;
	height: 2.125rem;
	padding: 0;
	border-radius: 999px;
	border: 1px solid color-mix(in srgb, var(--primary-color, #717fe0) 18%, #e8ecf4);
	font: inherit;
	appearance: none;
	-webkit-appearance: none;
	background: linear-gradient(
		180deg,
		#ffffff 0%,
		color-mix(in srgb, var(--primary-color, #717fe0) 5%, #ffffff) 100%
	);
	color: var(--primary-color, #717fe0);
	box-shadow:
		0 1px 2px rgba(15, 23, 42, 0.05),
		0 4px 10px rgba(15, 23, 42, 0.04);
	text-decoration: none;
	cursor: pointer;
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease,
		border-color 0.2s ease,
		background 0.2s ease,
		color 0.2s ease;
}

.block2-card-action__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	line-height: 1;
}

.block2-card-action__icon .zmdi {
	font-size: 1.125rem;
	line-height: 1;
}

.block2-card-action--cart:hover:not(.is-disabled),
.block2-card-action--cart:focus-visible:not(.is-disabled) {
	color: var(--on-primary, #ffffff);
	border-color: var(--primary-color, #717fe0);
	background: var(--primary-color, #717fe0);
	box-shadow:
		0 6px 16px color-mix(in srgb, var(--primary-color, #717fe0) 34%, transparent),
		0 2px 6px rgba(15, 23, 42, 0.08);
	transform: translateY(-1px);
	text-decoration: none;
}

.block2-card-action--wishlist:hover,
.block2-card-action--wishlist:focus-visible {
	color: var(--primary-color, #717fe0);
	border-color: color-mix(in srgb, var(--primary-color, #717fe0) 28%, #e8ebf0);
	background: color-mix(in srgb, var(--primary-color, #717fe0) 10%, #ffffff);
	box-shadow:
		0 6px 14px color-mix(in srgb, var(--primary-color, #717fe0) 16%, transparent),
		0 2px 6px rgba(15, 23, 42, 0.06);
	transform: translateY(-1px);
	text-decoration: none;
}

.block2-card-action--wishlist.is-active {
	color: var(--primary-color, #717fe0);
	border-color: color-mix(in srgb, var(--primary-color, #717fe0) 34%, #e8ebf0);
	background: color-mix(in srgb, var(--primary-color, #717fe0) 12%, #ffffff);
	box-shadow:
		0 4px 12px color-mix(in srgb, var(--primary-color, #717fe0) 18%, transparent),
		inset 0 0 0 1px color-mix(in srgb, var(--primary-color, #717fe0) 8%, transparent);
}

.block2-card-action--wishlist.is-active .zmdi-favorite {
	color: var(--primary-color, #717fe0);
}

.block2-card-action.is-disabled {
	opacity: 0.45;
	pointer-events: auto;
	cursor: not-allowed;
	box-shadow: none;
	transform: none;
}

.block2-card-action--cart.is-disabled,
.block2-card-action--cart.is-disabled:hover,
.block2-card-action--cart.is-disabled:focus-visible {
	color: #94a3b8;
	border-color: rgba(15, 23, 42, 0.1);
	background: #f1f5f9;
	box-shadow: none;
	transform: none;
}

.block2-card-action.is-loading {
	opacity: 0.65;
	pointer-events: none;
}

.js-addcart-b2.is-loading {
	opacity: 0.65;
}

.block2-txt--split .block2-txt__row--head .block2-txt-child2 {
	width: auto;
	flex-shrink: 0;
	padding-top: 0;
}

.block2-txt--split .block2-txt__row--meta {
	--block2-meta-min-h: 2.65rem;
	align-items: flex-end !important;
	gap: 0.5rem;
	min-height: var(--block2-meta-min-h);
}

.block2-txt--split .block2-txt__row--meta .block2-price-wrap {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-self: stretch;
	min-height: var(--block2-meta-min-h);
}

.block2-txt--split .block2-txt__row--meta .block2-price {
	line-height: 1.25;
}

.block2-txt--split .block2-txt__row--meta .block2-card-rating {
	align-self: flex-end;
}

.block2-card-rating__score {
	font-family: var(--main-font);
	font-size: 0.8125rem;
	font-weight: 700;
	line-height: 1;
	color: #374151;
	letter-spacing: -0.02em;
	white-space: nowrap;
	flex-shrink: 0;
}

.block2-card-rating__count {
	font-family: var(--main-font);
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1;
	color: #6b7280;
	letter-spacing: 0;
	white-space: nowrap;
	flex-shrink: 0;
}

.js-produce-card {
	cursor: pointer;
}

/* Vertical product card (Trendyol-style tall layout) */
.isotope-grid.row > [class*="col-"] {
	display: flex;
	flex-direction: column;
}

.isotope-grid .block2--vertical,
.recently-viewed-produces-section .block2--vertical {
	display: flex;
	flex-direction: column;
	width: 100%;
	flex: 1;
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 12px;
	box-shadow: 0 1px 4px rgba(15, 23, 42, 0.06);
	overflow: visible;
}

.isotope-grid .block2--vertical .block2-pic,
.recently-viewed-produces-section .block2--vertical .block2-pic {
	width: 100%;
	height: auto !important;
	aspect-ratio: 4 / 5;
	flex-shrink: 0;
	border-radius: 12px 12px 0 0;
	background: #fff;
	overflow: hidden;
}

.isotope-grid .block2--vertical .block2-pic img,
.recently-viewed-produces-section .block2--vertical .block2-pic img,
.isotope-grid .block2--vertical .block2-pic-slider__slide img,
.recently-viewed-produces-section .block2--vertical .block2-pic-slider__slide img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	padding: 0;
	box-sizing: border-box;
}

.isotope-grid .block2--vertical .block2-pic-slider,
.recently-viewed-produces-section .block2--vertical .block2-pic-slider {
	position: absolute;
	inset: 0;
}

.isotope-grid .block2--vertical .block2-pic-badges--stock,
.recently-viewed-produces-section .block2--vertical .block2-pic-badges--stock {
	max-width: calc(100% - 2.75rem - var(--block2-badge-inset, 8px) * 2);
	z-index: 7;
}

.isotope-grid .block2--vertical .block2-pic-badges--stock .block2-stock-badge,
.recently-viewed-produces-section .block2--vertical .block2-pic-badges--stock .block2-stock-badge,
.isotope-grid .block2--vertical .block2-pic-badges--stock .block2-starred-badge,
.recently-viewed-produces-section .block2--vertical .block2-pic-badges--stock .block2-starred-badge {
	font-size: 0.5625rem;
	padding: 0.28rem 0.5rem 0.28rem 0.4rem;
	letter-spacing: 0.05em;
}

.isotope-grid .block2--vertical .block2-pic-badges--stock .block2-starred-badge__icon,
.recently-viewed-produces-section .block2--vertical .block2-pic-badges--stock .block2-starred-badge__icon,
.isotope-grid .block2--vertical .block2-pic-badges--stock .block2-stock-badge__icon,
.recently-viewed-produces-section .block2--vertical .block2-pic-badges--stock .block2-stock-badge__icon {
	width: 0.6875rem;
	height: 0.6875rem;
}

.isotope-grid .block2--vertical .block2-pic-overlay-actions,
.recently-viewed-produces-section .block2--vertical .block2-pic-overlay-actions {
	position: absolute;
	top: var(--block2-badge-inset, 8px);
	right: var(--block2-badge-inset, 8px);
	z-index: 8;
	pointer-events: auto;
}

.isotope-grid .block2--vertical .block2-card-action--overlay,
.recently-viewed-produces-section .block2--vertical .block2-card-action--overlay {
	width: 2rem;
	height: 2rem;
	background: rgba(255, 255, 255, 0.94);
	border-color: rgba(15, 23, 42, 0.08);
	box-shadow: 0 2px 8px rgba(15, 23, 42, 0.1);
}

.isotope-grid .block2--vertical .block2-body,
.recently-viewed-produces-section .block2--vertical .block2-body {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 12px 14px 20px;
	min-width: 0;
	min-height: 0;
	border-radius: 0 0 12px 12px;
}

.isotope-grid .block2--vertical .block2-body__title,
.recently-viewed-produces-section .block2--vertical .block2-body__title {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: 14px !important;
	line-height: 1.35;
	font-weight: 700;
	color: #1f2937 !important;
	text-decoration: none;
	margin: 0;
	min-height: calc(1.35em * 2);
}

.isotope-grid .block2--vertical .block2-body__rating,
.recently-viewed-produces-section .block2--vertical .block2-body__rating {
	min-height: 1.4rem;
	display: flex;
	align-items: center;
}

.isotope-grid .block2--vertical .block2-card-rating,
.recently-viewed-produces-section .block2--vertical .block2-card-rating {
	background: transparent;
	border: none;
	box-shadow: none;
	padding: 0;
	gap: 0.35rem;
	max-width: 100%;
}

.isotope-grid .block2--vertical .block2-card-rating__score,
.recently-viewed-produces-section .block2--vertical .block2-card-rating__score {
	order: -1;
}

.isotope-grid .block2--vertical .block2-body__footer,
.recently-viewed-produces-section .block2--vertical .block2-body__footer {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 0.5rem;
	margin-top: 4px;
	padding-top: 0;
	flex-shrink: 0;
}

.isotope-grid .block2--vertical .block2-pic-badges--discount,
.recently-viewed-produces-section .block2--vertical .block2-pic-badges--discount {
	z-index: 7;
}

.isotope-grid .block2--vertical .block2-discount-badge,
.recently-viewed-produces-section .block2--vertical .block2-discount-badge {
	padding: 0.34rem 0.52rem 0.32rem 0.46rem;
	border-radius: 0.45rem;
}

.isotope-grid .block2--vertical .block2-discount-badge__value,
.recently-viewed-produces-section .block2--vertical .block2-discount-badge__value {
	font-size: 0.75rem;
}

.isotope-grid .block2--vertical .block2-discount-badge__label,
.recently-viewed-produces-section .block2--vertical .block2-discount-badge__label {
	font-size: 0.5625rem;
}

.isotope-grid .block2--vertical .block2-body__price,
.recently-viewed-produces-section .block2--vertical .block2-body__price {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 2px;
}

.isotope-grid .block2--vertical .block2-price--discounted,
.recently-viewed-produces-section .block2--vertical .block2-price--discounted {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
	line-height: 1.2;
}

.isotope-grid .block2--vertical .block2-price,
.recently-viewed-produces-section .block2--vertical .block2-price,
.isotope-grid .block2--vertical .block2-price__current,
.recently-viewed-produces-section .block2--vertical .block2-price__current {
	font-size: 16px !important;
	font-weight: 700 !important;
	line-height: 1.2;
	color: #ea580c !important;
	letter-spacing: 0;
}

.isotope-grid .block2--vertical .block2-price--discounted .block2-price__old,
.recently-viewed-produces-section .block2--vertical .block2-price--discounted .block2-price__old {
	font-size: 11px !important;
	color: #9ca3af !important;
	font-weight: 500 !important;
}

.isotope-grid .block2--vertical .block2-card-action--footer,
.recently-viewed-produces-section .block2--vertical .block2-card-action--footer {
	flex-shrink: 0;
	width: 2rem;
	height: 2rem;
	margin-bottom: 1px;
}

.isotope-grid .block2--vertical:hover .block2-body__title,
.recently-viewed-produces-section .block2--vertical:hover .block2-body__title {
	color: var(--primary-color, #717fe0) !important;
}

/* Vertical cards: subtle hover — no purple overlay or detail CTA */
.isotope-grid .block2--vertical .block2-pic::after,
.recently-viewed-produces-section .block2--vertical .block2-pic::after {
	display: none;
}

.isotope-grid .block2--vertical .block2-pic-hover-cta,
.recently-viewed-produces-section .block2--vertical .block2-pic-hover-cta {
	display: none !important;
}

.isotope-grid .block2--vertical:hover,
.recently-viewed-produces-section .block2--vertical:hover {
	border-color: color-mix(in srgb, var(--primary-color, #717fe0) 22%, #ececec);
	box-shadow: 0 4px 14px rgba(15, 23, 42, 0.1);
}

.isotope-grid .block2--vertical:hover .block2-pic.hov-img0 img,
.recently-viewed-produces-section .block2--vertical:hover .block2-pic.hov-img0 img,
.recently-viewed-produces-section .block2:hover .block2-pic-slider__slide img,
.block2:hover .block2-pic-slider__slide img {
	transform: none;
}

/* Product cards: banner ile aynı tema rengi hover kaplaması (görsel alanı) */
.block2 .block2-pic::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background-color: color-mix(in srgb, var(--primary-color, #717fe0) 55%, transparent);
	opacity: 0;
	-webkit-transition: opacity 0.4s ease;
	-o-transition: opacity 0.4s ease;
	-moz-transition: opacity 0.4s ease;
	transition: opacity 0.4s ease;
}

.block2:hover .block2-pic::after {
	opacity: 1;
}

.block2:hover .block2-txt-child1 a.stext-104,
.block2:hover .block2-body__title {
	color: var(--primary-color, #717fe0) !important;
}

@media (prefers-reduced-motion: reduce) {
	.block2 .block2-pic::after {
		transition-duration: 0.01ms;
	}
}

/* Kartın tamamına gelince görsel zoom (sadece pic üzerinde değil) */
.block2:hover .block2-pic.hov-img0 img {
	-webkit-transform: scale(1.08);
	-moz-transform: scale(1.08);
	-ms-transform: scale(1.08);
	-o-transform: scale(1.08);
	transform: scale(1.08);
}

.block2-pic img {
	position: relative;
	z-index: 0;
}

/* Hover: İncele + göz ikonu — fotoğrafın alt ortası */
.block2-pic-hover-cta {
	position: absolute;
	left: 50%;
	bottom: 14px;
	top: auto;
	z-index: 2;
	-webkit-transform: translate(-50%, 10px);
	-moz-transform: translate(-50%, 10px);
	-ms-transform: translate(-50%, 10px);
	-o-transform: translate(-50%, 10px);
	transform: translate(-50%, 10px);
	opacity: 0;
	pointer-events: none;
	-webkit-transition: opacity 0.35s ease, transform 0.35s ease;
	-o-transition: opacity 0.35s ease, transform 0.35s ease;
	-moz-transition: opacity 0.35s ease, transform 0.35s ease;
	transition: opacity 0.35s ease, transform 0.35s ease;
	text-align: center;
	max-width: calc(100% - 24px);
}

.block2:hover .block2-pic-hover-cta {
	opacity: 1;
	-webkit-transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	-o-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
}

.block2-pic-hover-cta-inner {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 18px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.94);
	color: var(--primary-color, #717fe0);
	font-family: var(--main-font);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.02em;
	box-shadow: 0 6px 20px rgba(17, 24, 39, 0.14);
}

.block2-pic-hover-cta-inner .zmdi {
	font-size: 19px;
	line-height: 1;
}

@media (prefers-reduced-motion: reduce) {
	.block2-pic-hover-cta {
		transition-duration: 0.01ms;
	}
}

/* Product grid: responsive columns + equal-height cards */
@media (min-width: 992px) {
	.isotope-grid.row {
		margin-left: -12px;
		margin-right: -12px;
	}

	.isotope-grid.row > [class*="col-"] {
		padding-left: 12px;
		padding-right: 12px;
	}

	.isotope-grid .block2--vertical .block2-pic,
	.recently-viewed-produces-section .block2--vertical .block2-pic {
		aspect-ratio: 4 / 5;
	}

	.isotope-grid .block2--vertical .block2-body__title,
	.recently-viewed-produces-section .block2--vertical .block2-body__title {
		font-size: 13px !important;
	}

	.isotope-grid .block2--vertical .block2-body,
	.recently-viewed-produces-section .block2--vertical .block2-body {
		padding: 10px 12px 18px;
		gap: 5px;
	}

	.isotope-grid .block2--vertical .block2-price,
	.recently-viewed-produces-section .block2--vertical .block2-price,
	.isotope-grid .block2--vertical .block2-price__current,
	.recently-viewed-produces-section .block2--vertical .block2-price__current {
		font-size: 15px !important;
	}

	.isotope-grid .block2--vertical .block2-card-action--footer,
	.recently-viewed-produces-section .block2--vertical .block2-card-action--footer,
	.isotope-grid .block2--vertical .block2-card-action--overlay,
	.recently-viewed-produces-section .block2--vertical .block2-card-action--overlay {
		width: 1.85rem;
		height: 1.85rem;
	}

	.isotope-grid .block2--vertical .rating-stars--card,
	.recently-viewed-produces-section .block2--vertical .rating-stars--card {
		--star-size: 0.72rem;
		--star-gap: 0.08rem;
	}

	.isotope-grid .block2--vertical .block2-card-rating__score,
	.recently-viewed-produces-section .block2--vertical .block2-card-rating__score {
		font-size: 0.75rem;
	}
}

/* Wide screens: 6 cards per row */
@media (min-width: 1400px) {
	.isotope-grid.row > .col-lg-3 {
		flex: 0 0 16.666667%;
		max-width: 16.666667%;
	}

	.isotope-grid .block2--vertical .block2-body__title,
	.recently-viewed-produces-section .block2--vertical .block2-body__title {
		font-size: 12px !important;
	}

	.isotope-grid .block2--vertical .block2-price,
	.recently-viewed-produces-section .block2--vertical .block2-price,
	.isotope-grid .block2--vertical .block2-price__current,
	.recently-viewed-produces-section .block2--vertical .block2-price__current {
		font-size: 14px !important;
	}

	.isotope-grid .block2--vertical .block2-card-action--footer,
	.recently-viewed-produces-section .block2--vertical .block2-card-action--footer,
	.isotope-grid .block2--vertical .block2-card-action--overlay,
	.recently-viewed-produces-section .block2--vertical .block2-card-action--overlay {
		width: 1.75rem;
		height: 1.75rem;
	}

	.isotope-grid .block2--vertical .rating-stars--card,
	.recently-viewed-produces-section .block2--vertical .rating-stars--card {
		--star-size: 0.68rem;
		--star-gap: 0.06rem;
	}
}

/* Product grid: 2 columns on mobile, compact cards */
@media ( max-width : 767px) {
	.block2-pic-hover-cta,
	.block2:hover .block2-pic-hover-cta {
		display: none !important;
		opacity: 0;
		visibility: hidden;
	}

	.isotope-grid.row {
		margin-left: -8px;
		margin-right: -8px;
	}
	.isotope-grid.row > [class*="col-"] {
		padding-left: 8px;
		padding-right: 8px;
	}
	.isotope-grid .block2--vertical .block2-pic,
	.recently-viewed-produces-section .block2--vertical .block2-pic {
		height: auto !important;
		aspect-ratio: 4 / 5;
		padding-bottom: 0;
		position: relative;
		border-radius: 12px 12px 0 0;
		background: #fff;
		overflow: hidden;
	}
	.isotope-grid .block2--vertical .block2-pic img,
	.recently-viewed-produces-section .block2--vertical .block2-pic img {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
		padding: 0;
		box-sizing: border-box;
		z-index: 0;
	}
	.isotope-grid .block2--vertical .block2-body__title,
	.recently-viewed-produces-section .block2--vertical .block2-body__title {
		font-size: 13px !important;
	}
	.isotope-grid .block2--vertical .block2-price,
	.recently-viewed-produces-section .block2--vertical .block2-price,
	.isotope-grid .block2--vertical .block2-price__current,
	.recently-viewed-produces-section .block2--vertical .block2-price__current {
		font-size: 14px !important;
	}
	.isotope-grid .block2--vertical .block2-card-rating,
	.recently-viewed-produces-section .block2--vertical .block2-card-rating {
		padding: 0;
		gap: 0.3rem;
	}
	.isotope-grid .block2--vertical .rating-stars--card,
	.recently-viewed-produces-section .block2--vertical .rating-stars--card {
		--star-size: 0.72rem;
		--star-gap: 0.08rem;
	}
	.isotope-grid .block2--vertical .block2-card-rating__score,
	.recently-viewed-produces-section .block2--vertical .block2-card-rating__score {
		font-size: 0.75rem;
	}
	.isotope-grid .block2-pic {
		height: 0;
		padding-bottom: 100%;
		position: relative;
		border-radius: 8px;
	}
	.isotope-grid .block2-pic img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		z-index: 0;
	}
	.isotope-grid .block2-txt {
		padding-top: 8px !important;
	}
	.isotope-grid .block2-txt .stext-104 {
		font-size: 13px !important;
		line-height: 1.35;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.home-produces-section .block2-txt .stext-104,
	.home-favorite-produces-section .block2-txt .stext-104 {
		color: #1f2937 !important;
		font-weight: 700;
	}
	.isotope-grid .block2 .stext-105.cl3 {
		font-size: 13px !important;
	}
	.isotope-grid .block2-card-rating {
		padding: 0.18rem 0.45rem 0.18rem 0.32rem;
		gap: 0.3rem;
	}
	.isotope-grid .block2-txt--split {
		gap: 0.3rem;
	}
	.isotope-grid .block2-txt--split .block2-txt__row--meta {
		--block2-meta-min-h: 2.35rem;
	}
	.isotope-grid .rating-stars--card {
		--star-size: 0.72rem;
		--star-gap: 0.08rem;
	}
	.isotope-grid .block2-card-rating__score {
		font-size: 0.75rem;
	}
	.isotope-grid .block2-txt-child2 .zmdi {
		font-size: 18px !important;
	}
}

/* Home favorite produces (above banner) — same card grid as home-produces-section */
.home-favorite-produces-section {
	padding-top: 28px;
	padding-bottom: 8px;
}

.home-favorite-produces-section .sec-banner-heading-wrap {
	min-width: 0;
	max-width: 100%;
}

@media ( min-width : 768px) {
	.home-favorite-produces-section {
		padding-top: 36px;
		padding-bottom: 12px;
	}
}

/* Home produces: premium title + filter chips */
.home-produces-section {
	padding-top: 28px;
}

.home-produces-heading-wrap {
	padding-bottom: 20px;
	min-width: 0;
	max-width: 100%;
}

.home-produces-title {
	font-family: var(--accent-font);
	font-weight: 700;
	letter-spacing: 0.25px;
	margin: 0;
	max-width: 100%;
	overflow-wrap: anywhere;
	word-break: break-word;
	hyphens: auto;
}

.home-produces-filter-wrap {
	position: relative;
	margin-top: 4px;
	margin-bottom: 28px;
	padding-bottom: 4px;
}

.home-produces-filter-scroll {
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	touch-action: pan-x;
	overscroll-behavior-x: contain;
	overscroll-behavior-y: none;
	scrollbar-width: none;
	margin: 0 -4px;
	padding: 2px 4px 10px;
}

.home-produces-filter-scroll::-webkit-scrollbar {
	display: none;
	height: 0;
}

.home-produces-filter-group {
	display: inline-flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 12px;
	min-width: min-content;
}

.home-produces-filter-btn {
	-webkit-appearance: none;
	appearance: none;
	flex: 0 0 auto;
	cursor: pointer;
	margin: 0 !important;
	padding: 10px 18px;
	min-height: 42px;
	border: 1px solid #e7e9ef !important;
	border-bottom: 1px solid #e7e9ef !important;
	border-radius: 999px !important;
	background: #fff;
	box-shadow: 0 1px 2px rgba(17, 24, 39, 0.05);
	font-family: var(--main-font);
	font-weight: 600;
	font-size: 13px;
	color: #667085 !important;
	line-height: 1.25;
	white-space: nowrap;
	text-decoration: none !important;
	transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease,
		box-shadow 0.2s ease, transform 0.15s ease;
}

.home-produces-filter-btn:hover,
.home-produces-filter-btn:focus {
	text-decoration: none !important;
	outline: none;
	border-color: color-mix(in srgb, var(--primary-color) 22%, #e7e9ef) !important;
	border-bottom-color: color-mix(in srgb, var(--primary-color) 22%, #e7e9ef) !important;
	color: color-mix(in srgb, var(--primary-color) 72%, #4b5563) !important;
	background: #fafbfc !important;
	box-shadow: 0 2px 8px rgba(17, 24, 39, 0.06);
}

.home-produces-filter-btn.how-active1 {
	border-color: color-mix(in srgb, var(--primary-color) 28%, #d7dbe7) !important;
	border-bottom-color: color-mix(in srgb, var(--primary-color) 28%, #d7dbe7) !important;
	background: color-mix(in srgb, var(--primary-color) 12%, #ffffff) !important;
	color: color-mix(in srgb, var(--primary-color) 88%, #1f2937) !important;
	box-shadow: 0 2px 10px color-mix(in srgb, var(--primary-color) 18%, transparent);
}

.home-produces-filter-btn.how-active1:hover,
.home-produces-filter-btn.how-active1:focus {
	border-color: color-mix(in srgb, var(--primary-color) 32%, #d7dbe7) !important;
	border-bottom-color: color-mix(in srgb, var(--primary-color) 32%, #d7dbe7) !important;
	color: color-mix(in srgb, var(--primary-color) 88%, #1f2937) !important;
	background: color-mix(in srgb, var(--primary-color) 14%, #ffffff) !important;
}

.home-produces-filter-wrap.has-overflow::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 10px;
	width: 36px;
	pointer-events: none;
	background: linear-gradient(to right, rgba(255, 255, 255, 0),
		rgba(255, 255, 255, 0.98));
}

@media ( min-width : 768px) {
	.home-produces-filter-scroll {
		overflow: visible;
		margin: 0;
		padding: 0;
	}

	.home-produces-filter-group {
		display: flex;
		flex-wrap: wrap;
		gap: 10px;
		row-gap: 10px;
		width: 100%;
		min-width: 0;
	}

	.home-produces-filter-wrap.has-overflow::after {
		display: none;
	}
}

.home-produces-section .block2-txt .js-name-b2,
.home-favorite-produces-section .block2-txt .js-name-b2,
.home-produces-section .block2-txt .stext-104,
.home-favorite-produces-section .block2-txt .stext-104 {
	color: #1f2937 !important;
	font-weight: 700;
}

.home-produces-section .block2-txt .stext-105.cl3 {
	color: #111827 !important;
	font-weight: 700;
}

@media ( max-width : 767px) {
	.home-produces-section .isotope-grid.home-produces-grid--native {
		transition: min-height 0.28s ease;
	}

	.home-produces-section .isotope-grid.home-produces-grid--native .isotope-item {
		position: relative !important;
		left: auto !important;
		top: auto !important;
		right: auto !important;
		transform: none !important;
		width: 50% !important;
		opacity: 1;
		transition: opacity 0.22s ease;
	}

	.home-produces-section .isotope-grid.home-produces-grid--native.is-filtering .isotope-item {
		transition: opacity 0.22s ease;
	}

	.home-produces-section .isotope-grid.home-produces-grid--native .isotope-item.is-filter-hidden {
		display: none !important;
	}

	.home-produces-filter-btn {
		touch-action: manipulation;
		-webkit-tap-highlight-color: transparent;
	}
}

/* Produce detail: shared radii */
.sec-produce-detail,
.produce-detail-page {
	--pd-pill-radius: 999px;
	--pd-surface-radius: 16px;
	--pd-surface-radius-lg: 12px;
	--pd-header-clearance: calc(40px + 84px + 2px);
}

/* Ürün detay — breadcrumb */
.produce-detail-page .produce-detail-top {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding-left: 15px;
	padding-right: 15px;
	margin-top: var(--pd-header-clearance);
	padding-top: 0;
	padding-bottom: 0.5rem;
}

.produce-detail-page .produce-detail-breadcrumb {
	margin: 0;
	padding: 0;
	gap: 0.35rem 0.5rem;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	max-width: 100%;
}

.produce-detail-page .produce-detail-breadcrumb-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 28px;
	padding: 4px 10px;
	border-radius: var(--pd-pill-radius);
	border: none;
	background: transparent;
	box-shadow: none;
	font-weight: 500;
	font-size: 13px;
	line-height: 1.2;
	text-decoration: none;
	color: #667085;
}

.produce-detail-page .produce-detail-breadcrumb-chip--link {
	flex: 0 0 auto;
	font-weight: 500;
}

.produce-detail-page .produce-detail-breadcrumb-chip--link:hover,
.produce-detail-page .produce-detail-breadcrumb-chip--link:focus-visible {
	color: var(--primary-color, #717fe0) !important;
	background: color-mix(in srgb, var(--primary-color, #717fe0) 8%, #ffffff);
	text-decoration: none;
	outline: none;
}

.produce-detail-page .produce-detail-breadcrumb-chip--current {
	flex: 0 1 auto;
	width: auto;
	max-width: 100%;
	color: #1f2937 !important;
	font-weight: 600;
	background: color-mix(in srgb, var(--primary-color, #717fe0) 7%, #f3f4f6);
	word-break: break-word;
	text-align: left;
	justify-content: flex-start;
}

.produce-detail-page .produce-detail-breadcrumb-sep {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	color: #98a2b3;
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	padding: 0 2px;
	user-select: none;
}

@media (max-width: 991px) {
	.produce-detail-page {
		--pd-header-clearance: 0;
	}

	.produce-detail-page .produce-detail-top {
		margin-top: 0;
		padding-top: 8px;
		padding-bottom: 0.375rem;
	}
}

@media (min-width: 992px) {
	.produce-detail-page {
		--pd-header-clearance: calc(40px + 84px);
	}

	.produce-detail-page .produce-detail-top {
		padding-left: 25px;
		padding-right: 25px;
		padding-bottom: 0.625rem;
	}

	.produce-detail-page .produce-detail-breadcrumb-chip {
		font-size: 13px;
	}

	.produce-detail-page .sec-produce-detail.bg0 {
		padding-top: 0.5rem !important;
	}
}

/* Ürün detay — benzer ürünler */
.produce-detail-page .sec-produce-detail.bg0 {
	padding-top: 0.625rem !important;
	padding-bottom: 2rem !important;
}

.produce-detail-page .sec-produce-detail .row > [class*="col-"] {
	padding-bottom: 1.25rem !important;
}

.recently-viewed-produces-section {
	padding-top: 28px;
	padding-bottom: 40px;
}

.recently-viewed-produces-section--grid {
	padding-top: 28px;
	padding-bottom: 8px;
}

@media (min-width: 768px) {
	.recently-viewed-produces-section--grid {
		padding-top: 36px;
		padding-bottom: 12px;
	}
}

.recently-viewed-produces-section .sec-banner-heading-wrap {
	min-width: 0;
	max-width: 100%;
}

.recently-viewed-produces-track-wrap {
	position: relative;
}

.recently-viewed-produces-track {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	margin: 0 -10px;
}

.recently-viewed-produces-slide {
	flex: 0 0 25%;
	max-width: 25%;
	padding: 0 10px 24px;
	display: flex;
	flex-direction: column;
}

.recently-viewed-produces-slide .block2--vertical {
	width: 100%;
	flex: 1 1 auto;
	height: 100%;
	min-height: 100%;
}

@media (max-width: 991px) {
	.recently-viewed-produces-slide {
		flex: 0 0 33.3333%;
		max-width: 33.3333%;
	}
}

@media (max-width: 767px) {
	.recently-viewed-produces-section {
		padding-top: 20px;
		padding-bottom: 28px;
	}

	.recently-viewed-produces-track-wrap {
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		scroll-snap-type: x mandatory;
		scroll-padding-left: 16px;
		margin: 0 -16px;
		padding: 0 16px 4px;
		scrollbar-width: none;
	}

	.recently-viewed-produces-track-wrap::-webkit-scrollbar {
		display: none;
	}

	.recently-viewed-produces-track {
		flex-wrap: nowrap;
		align-items: stretch;
		margin: 0;
		gap: 12px;
	}

	.recently-viewed-produces-slide {
		flex: 0 0 42%;
		max-width: 168px;
		min-width: 148px;
		padding: 0;
		scroll-snap-align: start;
	}

	/* Homepage carousel: taller portrait cards (legacy mobile proportions) */
	.home-page .recently-viewed-produces-section .recently-viewed-produces-slide {
		flex: 0 0 48%;
		max-width: 200px;
		min-width: 168px;
	}

	.home-page .recently-viewed-produces-section .recently-viewed-produces-slide .block2--vertical .block2-pic {
		aspect-ratio: 10 / 23;
		height: auto !important;
	}

	.home-page .recently-viewed-produces-section .recently-viewed-produces-slide .block2--vertical .block2-body {
		padding: 10px 10px 14px;
		gap: 5px;
	}

	.home-page .recently-viewed-produces-section .recently-viewed-produces-slide .block2--vertical .block2-body__rating {
		min-height: 1.65rem;
	}

	.home-page .recently-viewed-produces-section .recently-viewed-produces-slide .block2--vertical .block2-body__footer {
		margin-top: auto;
		min-height: 2.6rem;
		padding-top: 4px;
	}

	.home-page .recently-viewed-produces-section .recently-viewed-produces-slide .block2-pic-overlay-actions {
		opacity: 1;
	}

}

.produce-detail-page .produce-detail-recently-viewed-section {
	padding-top: 16px;
	padding-bottom: 24px;
}

.produce-detail-page .produce-detail-related-section {
	padding-top: 12px;
	padding-bottom: 56px;
}

.produce-detail-page .produce-detail-related-section__head {
	margin: 0;
	padding-bottom: 14px;
}

.produce-detail-page .produce-detail-related-section__title {
	margin: 0;
}

@media (max-width: 767px) {
	.produce-detail-page .sec-produce-detail.bg0 {
		padding-bottom: 20px;
	}

	.produce-detail-page .produce-detail-related-section {
		padding-top: 8px;
		padding-bottom: 40px;
	}

	.produce-detail-page .produce-detail-related-section__head {
		padding-bottom: 10px;
	}
}

/* Produce detail: borderless gallery */
.produce-detail-gallery-wrap {
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	column-gap: 12px;
	border: none;
	border-radius: 0;
	background: transparent;
	padding: 0;
	box-shadow: none;
	--block2-badge-inset: 12px;
}

.produce-detail-gallery-wrap .produce-detail-gallery-stage {
	position: relative;
	width: 83.333333%;
	flex: 0 0 83.333333%;
	max-width: 83.333333%;
}

.produce-detail-gallery-wrap .produce-detail-gallery-stage .slick3 {
	width: 100%;
}

.produce-detail-gallery-wrap .produce-detail-gallery-stage .wrap-slick3-arrows {
	width: 100%;
	right: 0;
}

.produce-detail-gallery-wrap .produce-detail-gallery-stage .block2-pic-badges--stock {
	z-index: 20;
	max-width: calc(100% - var(--block2-badge-inset) * 2 - 52px);
}

.produce-detail-gallery-wrap .produce-detail-gallery-stage .block2-pic-badges--stock .block2-stock-badge,
.produce-detail-gallery-wrap .produce-detail-gallery-stage .block2-pic-badges--stock .block2-starred-badge {
	padding: 0.38rem 0.58rem 0.36rem 0.48rem;
	font-size: 0.6875rem;
}

.produce-detail-gallery-wrap .produce-detail-gallery-stage .block2-pic-badges--stock .block2-starred-badge__icon,
.produce-detail-gallery-wrap .produce-detail-gallery-stage .block2-pic-badges--stock .block2-stock-badge__icon {
	width: 0.82rem;
	height: 0.82rem;
}

.produce-detail-gallery-wrap .produce-detail-gallery-stage .block2-pic-badges--discount {
	right: var(--block2-badge-inset);
	bottom: var(--block2-badge-inset);
	z-index: 20;
	max-width: calc(100% - var(--block2-badge-inset) * 2);
}

.produce-detail-gallery-wrap .block2-discount-badge {
	padding: 0.42rem 0.62rem 0.4rem 0.54rem;
	border-radius: 0.5rem;
}

.produce-detail-gallery-wrap .block2-discount-badge__value {
	font-size: 0.875rem;
}

.produce-detail-gallery-wrap .block2-discount-badge__label {
	font-size: 0.6875rem;
}

.produce-detail-gallery .wrap-pic-w {
	aspect-ratio: 4 / 5;
	background: #f8f9fb;
	border-radius: var(--pd-surface-radius, 16px);
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.produce-detail-gallery .produce-detail-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.produce-detail-gallery-wrap .wrap-slick3-dots {
	padding-top: 0;
	width: 11.111111%;
	flex: 0 0 11.111111%;
	max-width: 11.111111%;
}

.produce-detail-gallery-wrap .wrap-slick3-dots .slick3-dots li {
	position: relative;
	width: 100% !important;
	height: auto !important;
	aspect-ratio: 1;
	margin-bottom: 14px !important;
	border-radius: 10px;
	overflow: hidden;
	background: #f8f9fb;
}

.produce-detail-gallery-wrap .wrap-slick3-dots .slick3-dots li:last-child {
	margin-bottom: 0 !important;
}

.produce-detail-gallery-wrap .wrap-slick3-dots .slick3-dots li img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	display: block;
	border-radius: 10px;
}

.produce-detail-gallery-wrap .slick3-dot-overlay {
	border-radius: 10px;
	border: 2px solid transparent;
	box-sizing: border-box;
}

.produce-detail-gallery-wrap .slick3-dot-overlay:hover,
.produce-detail-gallery-wrap .slick3-dots .slick-active .slick3-dot-overlay {
	border-color: color-mix(in srgb, var(--primary-color, #717fe0) 55%, #d1d5db);
}

.produce-detail-gallery-wrap .arrow-slick3 {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	font-size: 20px;
	line-height: 1;
	color: #374151;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 50%;
	box-shadow: 0 4px 16px rgba(15, 23, 42, 0.1);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	cursor: pointer;
}

.produce-detail-gallery-wrap .arrow-slick3 i.fa {
	display: none;
}

.produce-detail-gallery-wrap .arrow-slick3::before {
	content: '';
	display: block;
	width: 9px;
	height: 9px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
}

.produce-detail-gallery-wrap .prev-slick3::before {
	transform: rotate(135deg);
	margin-left: 3px;
}

.produce-detail-gallery-wrap .next-slick3::before {
	transform: rotate(-45deg);
	margin-right: 3px;
}

.produce-detail-gallery-wrap .arrow-slick3:hover {
	color: var(--primary-color, #717fe0);
	background: #ffffff;
	border-color: color-mix(in srgb, var(--primary-color, #717fe0) 28%, #e5e7eb);
}

.produce-detail-gallery-wrap .prev-slick3 {
	left: 12px;
}

.produce-detail-gallery-wrap .next-slick3 {
	right: 12px;
}

@media (min-width: 992px) {
	.produce-detail-page .sec-produce-detail .col-lg-7 > div {
		padding-left: 12px !important;
		padding-right: 12px !important;
	}

	.produce-detail-page .produce-detail-gallery-wrap {
		width: 80%;
		max-width: 80%;
	}

	.produce-detail-page .produce-detail-gallery .wrap-pic-w {
		aspect-ratio: 4 / 5;
		max-height: none;
	}
}

/* Produce detail: premium buy area */
.sec-produce-detail .produce-detail-panel {
	background: #ffffff;
	border: 1px solid #e8ecf2;
	border-radius: var(--pd-surface-radius);
	padding: 22px 22px 20px;
	box-shadow: 0 12px 36px rgba(17, 24, 39, 0.07);
}

.sec-produce-detail .produce-detail-title {
	font-size: 22px;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1.3;
}

.sec-produce-detail .produce-detail-price {
	display: inline-block;
	margin-top: 2px;
	line-height: 1.2;
}

.sec-produce-detail .produce-detail-subtitle {
	color: #667085;
	max-width: 48ch;
	padding-top: 12px;
	margin: 0;
}

.sec-produce-detail .produce-detail-subtitle:empty {
	display: none;
	padding: 0;
}

.sec-produce-detail .produce-detail-buy-section {
	padding-top: 16px;
}

.sec-produce-detail .produce-variant-row {
	padding-bottom: 12px;
}

.sec-produce-detail .produce-variant-label {
	font-weight: 600;
	color: #3a4251;
}

.sec-produce-detail .produce-detail-price-row {
	align-items: center;
	margin-top: 2px;
}

/* Shared e-commerce price typography (detail page, mini-cart, totals) */
.ecom-price {
	display: inline-flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 0.35em;
	font-family: var(--main-font, Poppins, sans-serif);
	font-weight: 600;
	line-height: 1.25;
	color: #222;
	font-variant-numeric: tabular-nums;
	letter-spacing: 0.01em;
}

.ecom-price__amount {
	font-weight: inherit;
}

.ecom-price__currency {
	font-weight: 600;
	font-size: 0.92em;
	color: inherit;
	letter-spacing: 0.02em;
}

.ecom-price--detail {
	font-size: 22px;
}

.ecom-price--discounted {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	flex-wrap: nowrap;
	gap: 0.1em;
	font-variant-numeric: tabular-nums;
}

.ecom-price--discounted .ecom-price__old {
	font-size: 0.88em;
	font-weight: 500;
	color: #9ca3af;
	text-decoration: line-through;
	text-decoration-thickness: 1.5px;
}

.ecom-price--discounted .ecom-price__current {
	font-size: 1.05em;
	font-weight: 700;
	color: #c2410c;
}

.ecom-price--discounted .ecom-price__current .ecom-price__amount,
.ecom-price--discounted .ecom-price__current .ecom-price__currency {
	color: inherit;
}

.ecom-price--cart-line,
.ecom-price--cart-total {
	font-size: 15px;
}

.cart-summary-grand-total.ecom-price {
	color: var(--primary-color, #717fe0);
}

.sec-produce-detail #produce-detail-price.ecom-price--detail {
	font-family: var(--main-font, Poppins, sans-serif);
	font-size: 1.65rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #111827;
	margin: 4px 0 2px;
}

.sec-produce-detail .produce-detail-buy-stack {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	width: 100%;
	max-width: 100%;
}

.sec-produce-detail .produce-detail-notice-slot,
.card-quick-cart-modal .produce-detail-notice-slot {
	margin: 0 0 10px 0;
	min-height: 0;
}

.sec-produce-detail .produce-detail-notice-slot.has-notice,
.card-quick-cart-modal .produce-detail-notice-slot.has-notice {
	margin-bottom: 12px;
}

.sec-produce-detail .produce-detail-buy-controls {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.sec-produce-detail .produce-detail-buy-controls .wrap-num-produce {
	margin: 0 !important;
	height: 44px;
	border-radius: var(--pd-pill-radius);
	border-color: #e5e8ef;
	background: #ffffff;
	box-shadow: inset 0 0 0 1px #eef1f6;
}

.sec-produce-detail .produce-detail-buy-controls .num-produce {
	background: #ffffff;
	font-weight: 600;
	color: #1f2937;
}

.sec-produce-detail .rs1-select2 .select2-container .select2-selection--single {
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	min-height: 46px;
}

.sec-produce-detail .rs1-select2.bor8 {
	border: 1px solid #e5e7eb !important;
	border-radius: 10px !important;
	overflow: hidden;
}

.sec-produce-detail .rs1-select2.bor8 .select2-container .select2-selection--single {
	border: none;
	border-radius: 10px;
}

.sec-produce-detail .js-variant-container {
	border: none !important;
	border-radius: 10px !important;
	overflow: hidden;
	padding: 12px;
	background: transparent;
}

.sec-produce-detail .js-variant-container.variant-valid {
	border: none !important;
}

.sec-produce-detail .js-variant-container.variant-invalid {
	border-color: var(--fv-error, var(--primary-color, #717fe0)) !important;
	box-shadow: 0 0 0 3px var(--fv-error-soft, color-mix(in srgb, var(--primary-color, #717fe0) 22%, transparent)) !important;
	background-color: color-mix(in srgb, var(--primary-color, #717fe0) 6%, #ffffff);
}

.sec-produce-detail .js-variant-container .select2-container {
	border-radius: 10px !important;
}

.sec-produce-detail .js-variant-container .select2-container .select2-selection--single {
	border: none !important;
	border-radius: 10px !important;
}

.sec-produce-detail .produce-variant-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.sec-produce-detail .produce-variant-btn {
	-webkit-appearance: none;
	appearance: none;
	border: 1px solid #e3e6ef;
	border-radius: var(--pd-pill-radius);
	background: #fff;
	color: #525b6b;
	padding: 9px 16px;
	min-height: 40px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.sec-produce-detail .produce-variant-btn:hover,
.sec-produce-detail .produce-variant-btn:focus {
	outline: none;
	border-color: color-mix(in srgb, var(--primary-color) 22%, #dfe3ee);
	color: color-mix(in srgb, var(--primary-color) 78%, #3a4556);
	background: #fcfcff;
	box-shadow: 0 2px 6px rgba(17, 24, 39, 0.06);
}

.sec-produce-detail .produce-variant-btn.is-active {
	border-color: color-mix(in srgb, var(--primary-color) 34%, #d2d8e8);
	background: color-mix(in srgb, var(--primary-color) 11%, #ffffff);
	color: color-mix(in srgb, var(--primary-color) 86%, #243244);
	box-shadow: 0 2px 8px color-mix(in srgb, var(--primary-color) 14%, transparent);
}

.sec-produce-detail .produce-detail-notice,
.card-quick-cart-modal .produce-detail-notice {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	font-family: var(--main-font, Poppins, sans-serif);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: 0.01em;
	color: color-mix(in srgb, var(--primary-color, #717fe0) 78%, #1a2233);
	background: linear-gradient(
		135deg,
		color-mix(in srgb, var(--primary-color, #717fe0) 7%, #ffffff) 0%,
		color-mix(in srgb, var(--primary-color, #717fe0) 4%, #f8f9fc) 100%
	);
	border: 1px solid color-mix(in srgb, var(--primary-color, #717fe0) 18%, #e8ecf4);
	border-left: 3px solid var(--primary-color, #717fe0);
	border-radius: 10px;
	padding: 10px 12px;
	box-shadow: 0 1px 2px rgba(17, 24, 39, 0.04);
}

.sec-produce-detail .produce-detail-notice[data-notice-type="stock-low"],
.card-quick-cart-modal .produce-detail-notice[data-notice-type="stock-low"] {
	animation: produce-detail-notice-glow 2.4s ease-in-out infinite;
}

.sec-produce-detail .produce-detail-notice-icon-wrap,
.card-quick-cart-modal .produce-detail-notice-icon-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	border-radius: 8px;
	background: color-mix(in srgb, var(--primary-color, #717fe0) 14%, #ffffff);
	color: var(--primary-color, #717fe0);
}

.sec-produce-detail .produce-detail-notice-icon,
.card-quick-cart-modal .produce-detail-notice-icon {
	font-size: 13px;
	line-height: 1;
}

.sec-produce-detail .produce-detail-notice-text,
.card-quick-cart-modal .produce-detail-notice-text {
	flex: 1;
	min-width: 0;
	white-space: normal;
	word-break: break-word;
}

.sec-produce-detail .produce-detail-notice[data-notice-type="stock-out"],
.sec-produce-detail .produce-detail-notice[data-notice-type="variant"],
.card-quick-cart-modal .produce-detail-notice[data-notice-type="stock-out"],
.card-quick-cart-modal .produce-detail-notice[data-notice-type="variant"] {
	animation: none;
	color: #9a3412;
	background: linear-gradient(135deg, #fff7ed 0%, #fffbeb 100%);
	border-color: #fed7aa;
	border-left-color: #ea580c;
}

.sec-produce-detail .produce-detail-notice[data-notice-type="stock-out"] .produce-detail-notice-icon-wrap,
.sec-produce-detail .produce-detail-notice[data-notice-type="variant"] .produce-detail-notice-icon-wrap,
.card-quick-cart-modal .produce-detail-notice[data-notice-type="stock-out"] .produce-detail-notice-icon-wrap,
.card-quick-cart-modal .produce-detail-notice[data-notice-type="variant"] .produce-detail-notice-icon-wrap {
	background: #ffedd5;
	color: #c2410c;
}

@keyframes produce-detail-notice-glow {
	0%, 100% {
		box-shadow: 0 1px 2px rgba(17, 24, 39, 0.04);
	}
	50% {
		box-shadow: 0 2px 12px color-mix(in srgb, var(--primary-color, #717fe0) 14%, transparent);
	}
}

.sec-produce-detail .rs1-select2 .select2-container .select2-selection--single .select2-selection__rendered {
	padding-left: 14px;
}

.sec-produce-detail .rs1-select2 .select2-container--default .select2-selection--single .select2-selection__arrow {
	border-left: 1px solid #e5e7eb;
}

.sec-produce-detail .rs1-select2 .select2-container--open .select2-dropdown {
	border-radius: 10px;
	border-color: var(--primary-color);
}

.sec-produce-detail .rs1-select2 .select2-container .select2-results__option[aria-selected="true"],
.sec-produce-detail .rs1-select2 .select2-container .select2-results__option--highlighted[aria-selected] {
	background: var(--primary-color);
	color: var(--on-primary, #111111);
}

.sec-produce-detail .bor10 {
	border-radius: 12px;
	overflow: hidden;
	border-color: #ebedf2;
}

.sec-produce-detail .tab01 .nav-tabs {
	padding: 0 18px;
}

.sec-produce-detail .produce-detail-addcart-btn {
	min-width: 176px;
	height: 44px;
	border-radius: var(--pd-pill-radius);
	font-family: var(--main-font);
	font-weight: 600;
	letter-spacing: 0.01em;
	color: var(--on-primary, #ffffff) !important;
	box-shadow: 0 8px 18px color-mix(in srgb, var(--primary-color, #717fe0) 28%, transparent);
	transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.sec-produce-detail .produce-detail-addcart-btn:not(:disabled):hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 22px color-mix(in srgb, var(--primary-color, #717fe0) 34%, transparent);
}

.sec-produce-detail .produce-detail-addcart-btn.is-disabled,
.sec-produce-detail .produce-detail-addcart-btn:disabled {
	opacity: 0.55;
	cursor: not-allowed;
	box-shadow: none;
}

/* Produce detail — mobile sticky buy bar (above cart sticky bar) */
.produce-detail-sticky-buy,
.produce-detail-sticky-buy-spacer {
	display: none;
}

@media (max-width: 991px) {
	body.produce-detail-page .produce-detail-sticky-buy {
		display: block;
		position: fixed;
		left: 0;
		right: 0;
		bottom: var(--cart-sticky-bar-reserve, 0px);
		z-index: 1095;
		pointer-events: none;
		transform: translateY(110%);
		opacity: 0;
		visibility: hidden;
		transition:
			transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
			opacity 0.24s ease,
			visibility 0.32s ease;
	}

	body.produce-detail-page .produce-detail-sticky-buy.produce-detail-sticky-buy--active {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}

	body.produce-detail-page:not(.has-cart-sticky-bar) .produce-detail-sticky-buy {
		padding-bottom: env(safe-area-inset-bottom, 0px);
	}

	body.produce-detail-page:not(.has-cart-sticky-bar) .produce-detail-sticky-buy.produce-detail-sticky-buy--active {
		padding-bottom: env(safe-area-inset-bottom, 0px);
	}

	body.produce-detail-page .produce-detail-sticky-buy__surface {
		pointer-events: none;
		display: flex;
		align-items: center;
		gap: 0.55rem;
		padding: 0.45rem 0.75rem;
		background: rgba(255, 255, 255, 0.96);
		border-top: 1px solid #eceef3;
		box-shadow: 0 -3px 14px rgba(15, 23, 42, 0.06);
		backdrop-filter: blur(12px);
		-webkit-backdrop-filter: blur(12px);
	}

	body.produce-detail-page .produce-detail-sticky-buy.produce-detail-sticky-buy--active .produce-detail-sticky-buy__surface {
		pointer-events: auto;
	}

	body.produce-detail-page .produce-detail-sticky-buy__leading {
		flex: 0 1 auto;
		min-width: 0;
		max-width: 38%;
	}

	body.produce-detail-page .produce-detail-sticky-buy__meta {
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		gap: 0.3rem 0.4rem;
		min-width: 0;
	}

	body.produce-detail-page .produce-detail-sticky-buy__price-wrap {
		min-width: 0;
		max-width: 100%;
		line-height: 1;
	}

	body.produce-detail-page .produce-detail-sticky-buy__price-wrap .produce-detail-sticky-buy__price,
	body.produce-detail-page .produce-detail-sticky-buy__price-wrap #produce-detail-sticky-price {
		display: inline-flex !important;
		align-items: baseline !important;
		flex-wrap: wrap !important;
		gap: 0.28rem !important;
		margin: 0 !important;
		font-family: var(--main-font) !important;
		font-size: 0.8125rem !important;
		font-weight: 700 !important;
		line-height: 1.15 !important;
		letter-spacing: -0.01em !important;
		color: #1f2937 !important;
		font-variant-numeric: tabular-nums;
	}

	body.produce-detail-page .produce-detail-sticky-buy__price-wrap #produce-detail-sticky-price.ecom-price--discounted {
		flex-direction: row !important;
		align-items: baseline !important;
	}

	body.produce-detail-page .produce-detail-sticky-buy__price-wrap #produce-detail-sticky-price .ecom-price__current {
		font-size: 0.8125rem !important;
		font-weight: 700 !important;
		color: color-mix(in srgb, var(--primary-color, #717fe0) 72%, #1f2937) !important;
	}

	body.produce-detail-page .produce-detail-sticky-buy__price-wrap #produce-detail-sticky-price .ecom-price__old {
		font-size: 0.6875rem !important;
		font-weight: 500 !important;
		color: #9ca3af !important;
		opacity: 1 !important;
		text-decoration: line-through;
		text-decoration-thickness: 1px;
	}

	body.produce-detail-page .produce-detail-sticky-buy__price-wrap #produce-detail-sticky-price .ecom-price__amount,
	body.produce-detail-page .produce-detail-sticky-buy__price-wrap #produce-detail-sticky-price .ecom-price__currency {
		font-size: inherit !important;
		font-weight: inherit !important;
		color: inherit !important;
	}

	body.produce-detail-page .produce-detail-sticky-buy__discount {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		flex: 0 0 auto;
		min-height: 1.125rem;
		padding: 0.08rem 0.34rem;
		border-radius: 999px;
		background: color-mix(in srgb, #ef4444 7%, #ffffff);
		border: 1px solid color-mix(in srgb, #ef4444 16%, #f1f5f9);
		color: #c2410c;
		font-size: 0.625rem;
		font-weight: 700;
		letter-spacing: 0.01em;
		line-height: 1;
		white-space: nowrap;
	}

	body.produce-detail-page .produce-detail-sticky-buy__discount[hidden] {
		display: none !important;
	}

	body.produce-detail-page .produce-detail-sticky-buy__cta {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 0.35rem;
		flex: 1 1 auto;
		min-width: 0;
		width: auto;
		min-height: 40px;
		margin: 0;
		padding: 0 0.9rem;
		border: none;
		border-radius: 999px;
		background: var(--primary-color, #717fe0);
		color: var(--on-primary, #ffffff) !important;
		font-family: var(--main-font);
		font-size: 0.75rem;
		font-weight: 700;
		letter-spacing: 0.02em;
		line-height: 1;
		cursor: pointer;
		-webkit-tap-highlight-color: transparent;
		box-shadow: 0 4px 14px color-mix(in srgb, var(--primary-color, #717fe0) 26%, transparent);
		transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease, opacity 0.2s ease;
	}

	body.produce-detail-page .produce-detail-sticky-buy__icon {
		font-size: 0.95rem;
		line-height: 1;
		opacity: 0.92;
	}

	body.produce-detail-page .produce-detail-sticky-buy__label {
		white-space: nowrap;
		font-size: 0.75rem;
	}

	body.produce-detail-page .produce-detail-sticky-buy__cta:not(:disabled):not(.is-disabled):active {
		transform: scale(0.985);
		filter: brightness(0.98);
	}

	body.produce-detail-page .produce-detail-sticky-buy__cta.is-disabled,
	body.produce-detail-page .produce-detail-sticky-buy__cta:disabled {
		opacity: 0.52;
		cursor: not-allowed;
		box-shadow: none;
		filter: grayscale(0.15);
	}

	body.produce-detail-page .produce-detail-sticky-buy__cta.is-loading {
		opacity: 0.78;
		pointer-events: none;
	}

	body.produce-detail-page.has-produce-detail-sticky-buy .produce-detail-sticky-buy-spacer {
		display: block;
		width: 100%;
		height: var(--produce-detail-bottom-reserve, 0px);
		flex-shrink: 0;
		pointer-events: none;
	}

	body.produce-detail-page.has-produce-detail-sticky-buy .checkout-sticky-dock .btn-back-to-top {
		bottom: calc(var(--produce-detail-bottom-reserve, var(--cart-sticky-bar-backtotop, 20px)) + 0.75rem + env(safe-area-inset-bottom, 0px));
		z-index: 1101;
	}

	body.produce-detail-page.cart-drawer-open .produce-detail-sticky-buy,
	body.produce-detail-page.cart-drawer-closing .produce-detail-sticky-buy,
	body.produce-detail-page.wishlist-drawer-open .produce-detail-sticky-buy,
	body.produce-detail-page.wishlist-drawer-closing .produce-detail-sticky-buy,
	body.produce-detail-page.contact-drawer-open .produce-detail-sticky-buy {
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
	}
}

@media (max-width: 991px) and (prefers-reduced-motion: reduce) {
	body.produce-detail-page .produce-detail-sticky-buy {
		transition: none;
	}
}

.produce-detail-page .sec-produce-detail .produce-detail-wishlist-row {
	padding-top: 1rem !important;
}

.sec-produce-detail .produce-detail-wishlist-row {
	padding-top: 28px !important;
}

.sec-produce-detail .produce-detail-secondary-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

.sec-produce-detail .produce-detail-action-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 44px;
	padding: 10px 18px;
	border: 1px solid #e3e6ef;
	border-radius: var(--pd-pill-radius);
	background: #fff;
	color: #3a4556;
	font-family: var(--main-font, Poppins, sans-serif);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	box-shadow: 0 2px 10px rgba(17, 24, 39, 0.07);
	transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.sec-produce-detail .produce-detail-info-panel .produce-detail-tabs__nav .nav-link {
	border-radius: var(--pd-pill-radius) !important;
}

.sec-produce-detail .produce-detail-action-btn:hover,
.sec-produce-detail .produce-detail-action-btn:focus-visible {
	outline: none;
	border-color: color-mix(in srgb, var(--primary-color) 28%, #dfe3ee);
	color: color-mix(in srgb, var(--primary-color) 82%, #243244);
	background: color-mix(in srgb, var(--primary-color) 6%, #ffffff);
	box-shadow: 0 4px 14px color-mix(in srgb, var(--primary-color) 12%, transparent);
	text-decoration: none;
}

.sec-produce-detail .produce-detail-action-btn:active {
	transform: translateY(1px);
}

.sec-produce-detail .produce-detail-action-btn i {
	font-size: 18px;
	line-height: 1;
}

.sec-produce-detail .produce-detail-action-btn.is-active {
	border-color: color-mix(in srgb, var(--primary-color) 36%, #d2d8e8);
	background: color-mix(in srgb, var(--primary-color) 12%, #ffffff);
	color: color-mix(in srgb, var(--primary-color) 88%, #243244);
	box-shadow: 0 4px 14px color-mix(in srgb, var(--primary-color) 16%, transparent);
}

.sec-produce-detail .produce-detail-action-btn.is-active i {
	color: var(--primary-color, #717fe0);
}

.sec-produce-detail .produce-detail-action-btn__label {
	white-space: nowrap;
}

.sec-produce-detail .produce-detail-tags {
	padding-top: 16px;
	gap: 8px;
}

.sec-produce-detail .produce-detail-tag-chip {
	display: inline-flex;
	align-items: center;
	padding: 6px 12px;
	border-radius: var(--pd-pill-radius);
	border: 1px solid #e5e8ef;
	background: #f8fafc;
	color: #475467;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.01em;
}

/* Ürün detay — paylaşım bottom sheet */
.produce-share-sheet {
	position: fixed;
	inset: 0;
	z-index: 1250;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	pointer-events: none;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.28s ease, visibility 0.28s ease;
}

.produce-share-sheet.is-open {
	pointer-events: auto;
	visibility: visible;
	opacity: 1;
}

.produce-share-sheet__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.48);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
}

.produce-share-sheet__panel {
	position: relative;
	width: min(100%, 520px);
	max-height: min(88dvh, 640px);
	background: #fff;
	border-radius: 20px 20px 0 0;
	padding: 10px 18px calc(18px + env(safe-area-inset-bottom, 0px));
	box-shadow: 0 -18px 48px rgba(15, 23, 42, 0.18);
	transform: translate3d(0, 100%, 0);
	transition: transform 0.34s cubic-bezier(0.32, 0.72, 0, 1);
}

.produce-share-sheet.is-open .produce-share-sheet__panel {
	transform: translate3d(0, 0, 0);
}

.produce-share-sheet__handle {
	width: 42px;
	height: 4px;
	border-radius: 999px;
	background: #d5dae3;
	margin: 4px auto 14px;
}

.produce-share-sheet__title {
	margin: 0 0 6px;
	font-family: var(--main-font, Poppins, sans-serif);
	font-size: 18px;
	font-weight: 700;
	color: #1a2233;
	text-align: center;
}

.produce-share-sheet__subtitle {
	margin: 0 0 18px;
	font-size: 13px;
	line-height: 1.45;
	color: #6b7280;
	text-align: center;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.produce-share-sheet__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px 10px;
	margin-bottom: 16px;
}

.produce-share-sheet__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	font-family: var(--main-font, Poppins, sans-serif);
}

.produce-share-sheet__item:hover .produce-share-sheet__icon,
.produce-share-sheet__item:focus-visible .produce-share-sheet__icon {
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(17, 24, 39, 0.12);
}

.produce-share-sheet__item:focus-visible {
	outline: none;
}

.produce-share-sheet__item.is-copied .produce-share-sheet__icon--copy {
	background: color-mix(in srgb, #22c55e 14%, #ffffff);
	color: #15803d;
}

.produce-share-sheet__icon {
	width: 54px;
	height: 54px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	color: #fff;
	background: #64748b;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.produce-share-sheet__icon--native {
	background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.produce-share-sheet__icon--whatsapp {
	background: #25d366;
}

.produce-share-sheet__icon--telegram {
	background: #229ed9;
}

.produce-share-sheet__icon--facebook {
	background: #1877f2;
}

.produce-share-sheet__icon--twitter {
	background: #111111;
}

.produce-share-sheet__icon--email {
	background: #ea580c;
}

.produce-share-sheet__icon--copy {
	background: color-mix(in srgb, var(--primary-color, #717fe0) 82%, #4f46e5);
}

.produce-share-sheet__label {
	font-size: 11px;
	font-weight: 600;
	color: #3a4556;
	text-align: center;
	line-height: 1.25;
}

.produce-share-sheet__cancel {
	width: 100%;
	min-height: 46px;
	border: 1px solid #e3e6ef;
	border-radius: 12px;
	background: #f8f9fc;
	color: #3a4556;
	font-family: var(--main-font, Poppins, sans-serif);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.produce-share-sheet__cancel:hover,
.produce-share-sheet__cancel:focus-visible {
	outline: none;
	background: #f1f3f8;
	border-color: #d5dae3;
}

body.produce-share-sheet-open {
	overflow: hidden;
}

@media ( min-width : 768px) {
	.produce-share-sheet {
		align-items: center;
		padding: 24px;
	}

	.produce-share-sheet__panel {
		border-radius: 20px;
		padding: 16px 22px 20px;
	}

	.produce-share-sheet__grid {
		grid-template-columns: repeat(7, minmax(0, 1fr));
	}
}

@media (prefers-reduced-motion: reduce) {
	.produce-share-sheet,
	.produce-share-sheet__panel,
	.produce-share-sheet__icon {
		transition: none;
	}
}

@media ( max-width : 767px) {
	.produce-detail-page .produce-detail-top {
		padding-left: 12px;
		padding-right: 12px;
	}

	.produce-detail-page .produce-detail-breadcrumb {
		gap: 0.25rem 0.375rem;
		margin-bottom: 4px;
	}

	.produce-detail-page .produce-detail-breadcrumb-chip {
		min-height: 28px;
		padding: 3px 9px;
		font-size: 11px;
	}

	.produce-detail-page .sec-produce-detail.bg0 {
		padding-top: 0.375rem !important;
		padding-bottom: 1.5rem !important;
	}

	.produce-detail-gallery-wrap .wrap-slick3-dots {
		margin-bottom: 10px !important;
	}

	.produce-detail-gallery-wrap {
		--block2-badge-inset: 10px;
		column-gap: 0;
	}

	.produce-detail-gallery-wrap .produce-detail-gallery-stage .block2-pic-badges--discount {
		max-width: calc(100% - var(--block2-badge-inset) * 2);
	}

	.produce-detail-gallery-wrap .produce-detail-gallery-stage .block2-pic-badges--stock {
		max-width: calc(100% - var(--block2-badge-inset) * 2 - 44px);
	}

	.produce-detail-gallery-wrap .block2-discount-badge__value {
		font-size: 0.8125rem;
	}

	.produce-detail-gallery-wrap .block2-discount-badge__label {
		font-size: 0.625rem;
	}

	.produce-detail-gallery .wrap-pic-w {
		aspect-ratio: 1 / 1;
		border-radius: 12px;
	}

	.sec-produce-detail .produce-detail-buy-row .size-204 {
		width: 100%;
	}
	.sec-produce-detail .produce-detail-panel {
		padding: 14px 12px;
		border-radius: var(--pd-surface-radius);
	}
	.sec-produce-detail .produce-detail-price {
		font-size: 24px;
	}
	.sec-produce-detail .produce-detail-buy-controls {
		display: grid;
		grid-template-columns: 124px 1fr;
		gap: 10px;
		width: 100%;
	}
	.sec-produce-detail .produce-detail-buy-controls .wrap-num-produce {
		width: 124px;
		height: 40px;
	}
	.sec-produce-detail .produce-detail-addcart-btn {
		min-width: 0;
		width: 100%;
		height: 42px;
	}

	.sec-produce-detail .produce-detail-wishlist-row.respon7,
	.sec-produce-detail .produce-detail-wishlist-row {
		padding-left: 0 !important;
	}

	.sec-produce-detail .produce-detail-secondary-actions {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: stretch;
		gap: 10px;
		width: 100%;
	}

	.sec-produce-detail .produce-detail-action-btn {
		flex: 1 1 0;
		min-width: 0;
		width: auto;
		flex-direction: column;
		justify-content: center;
		gap: 5px;
		padding: 10px 8px;
		min-height: 56px;
		border-radius: var(--pd-pill-radius);
	}

	.sec-produce-detail .produce-detail-action-btn i {
		font-size: 20px;
		flex-shrink: 0;
	}

	.sec-produce-detail .produce-detail-action-btn__label {
		white-space: normal;
		overflow: visible;
		text-overflow: unset;
		text-align: center;
		font-size: 11px;
		line-height: 1.3;
		max-width: 100%;
		word-break: break-word;
		hyphens: auto;
	}
}

@media ( max-width : 767px) {
	.home-produces-section {
		padding-top: 8px !important;
		padding-bottom: 72px !important;
	}
	.home-produces-heading-wrap {
		padding-bottom: 18px !important;
	}
	.home-produces-filter-wrap {
		margin-bottom: 20px !important;
	}
	.home-produces-filter-btn {
		padding: 10px 16px;
		font-size: 13px;
		min-height: 40px;
	}
}

.btn-addwish-b2 .icon-heart2 {
	opacity: 0;
}

.btn-addwish-b2:hover .icon-heart2 {
	opacity: 1;
}

.btn-addwish-b2:hover .icon-heart1 {
	opacity: 0;
}

.js-addedwish-b2 .icon-heart2 {
	opacity: 1;
}

.js-addedwish-b2 .icon-heart1 {
	opacity: 0;
}

/*---------------------------------------------*/
.label-new {
	position: relative;
}

.label-new::after {
	content: attr(data-label);
	font-family: Montserrat-Regular;
	font-size: 12px;
	color: #fff;
	line-height: 1.2;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	min-width: 50px;
	height: 22px;
	border-radius: 11px;
	padding: 0 6px;
	background-color: #66a8a6;
	top: 42px;
	left: 12px;
}

/*==================================================================
    TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT
==================================================================*/
.cl0 {
	color: #fff;
}

.cl1 {
	color: var(--primary-color, #717fe0);
}

.cl2 {
	color: #333;
}

.cl3 {
	color: #666;
}

.cl4 {
	color: #999;
}

.cl5 {
	color: #222;
}

.cl6 {
	color: #888;
}

.cl7 {
	color: #b2b2b2;
}

.cl8 {
	color: #555;
}

.cl9 {
	color: #aaa;
}

.cl10 {
	color: var(--primary-color, #1d1d1d);
}

.cl11 {
	color: #f9ba48;
}

.cl12 {
	color: #ccc;
}

/*//////////////////////////////////////////////////////////////////
[ S-Text 0 - 15 ]*/
.stext-101 {
	font-family: Poppins-Medium;
	font-size: 15px;
	line-height: 1.466667;
}

.stext-102 {
	font-family: Poppins-Regular;
	font-size: 14px;
	line-height: 1.7;
}

.stext-103 {
	font-family: Poppins-Regular;
	font-size: 15px;
	line-height: 1.466667;
}

.stext-104 {
	font-family: Poppins-Regular;
	font-size: 14px;
	line-height: 1.466667;
}

.stext-105 {
	font-family: Poppins-Regular;
	font-size: 14px;
	line-height: 1.466667;
	letter-spacing: 1px;
}

.stext-106 {
	font-family: Poppins-Regular;
	font-size: 15px;
	line-height: 1.2;
}

.stext-107 {
	font-family: Poppins-Regular;
	font-size: 13px;
	line-height: 1.923;
}

.stext-108 {
	font-family: Poppins-Light;
	font-size: 14px;
	line-height: 1.7143;
}

.stext-109 {
	font-family: Poppins-Regular;
	font-size: 12px;
	line-height: 1.833333;
}

.stext-110 {
	font-family: Poppins-Medium;
	font-size: 15px;
	line-height: 1.466667;
}

.stext-111 {
	font-family: Poppins-Regular;
	font-size: 13px;
	line-height: 1.6923;
}

.stext-112 {
	font-family: Poppins-Regular;
	font-size: 13px;
	line-height: 1.6923;
	text-transform: uppercase;
}

.stext-113 {
	font-family: Poppins-Light;
	font-size: 14px;
	line-height: 1.7857;
}

.stext-114 {
	font-family: Poppins-Italic;
	font-size: 15px;
	line-height: 1.666667;
}

.stext-115 {
	font-family: Poppins-Regular;
	font-size: 15px;
	line-height: 1.666667;
}

.stext-116 {
	font-family: Poppins-Regular;
	font-size: 15px;
	line-height: 1.266667;
}

.stext-117 {
	font-family: Poppins-Light;
	font-size: 15px;
	line-height: 1.666667;
}

/*---------------------------------------------*/
.stext-301 {
	font-family: Montserrat-Bold;
	font-size: 15px;
	line-height: 1.6;
}

/*//////////////////////////////////////////////////////////////////
[ M-Text 16 - 25 ]*/
.mtext-101 {
	font-family: Poppins-Medium;
	font-size: 18px;
	line-height: 1.333333;
}

.mtext-102 {
	font-family: Poppins-SemiBold;
	font-size: 16px;
	line-height: 1.6;
}

.mtext-103 {
	font-family: Poppins-Bold;
	font-size: 18px;
	line-height: 1.333333;
}

.mtext-104 {
	font-family: Poppins-Medium;
	font-size: 16px;
	line-height: 1.6;
}

.mtext-105 {
	font-family: Poppins-Regular;
	font-size: 24px;
	line-height: 1.5;
}

.mtext-106 {
	font-family: Poppins-SemiBold;
	font-size: 18px;
	line-height: 1.388888;
}

.mtext-107 {
	font-family: Poppins-Regular;
	font-size: 16px;
	line-height: 1.625;
}

.mtext-108 {
	font-family: Poppins-Regular;
	font-size: 20px;
	line-height: 1.3;
}

.mtext-109 {
	font-family: Poppins-Bold;
	font-size: 20px;
	line-height: 1.3;
	text-transform: uppercase;
}

.mtext-110 {
	font-family: Poppins-Regular;
	font-size: 18px;
	line-height: 1.222222;
}

.mtext-111 {
	font-family: Poppins-Bold;
	font-size: 25px;
	line-height: 1.2;
}

.mtext-112 {
	font-family: Poppins-Bold;
	font-size: 22px;
	line-height: 1.333333;
}

.mtext-113 {
	font-family: Poppins-Bold;
	font-size: 22px;
	line-height: 1.333333;
	text-transform: uppercase;
}

/*//////////////////////////////////////////////////////////////////
[ L-Text >= 26 ]*/
.ltext-101 {
	font-family: Poppins-Regular;
	font-size: 28px;
	line-height: 1.2857;
}

.ltext-102 {
	font-family: Poppins-Bold;
	font-size: 28px;
	line-height: 1.1;
}

.ltext-103 {
	font-family: Poppins-Bold;
	font-size: 36px;
	line-height: 1.1;
	max-width: 100%;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.ltext-104 {
	font-family: Poppins-Bold;
	font-size: 60px;
	line-height: 1.1;
	max-width: 100%;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.ltext-105 {
	font-family: Poppins-Bold;
	font-size: 50px;
	line-height: 1.1;
	max-width: 100%;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.ltext-106 {
	font-family: Poppins-Bold;
	font-size: 36px;
	line-height: 1.2;
}

.ltext-107 {
	font-family: Poppins-Bold;
	font-size: 30px;
	line-height: 1.1;
}

.ltext-108 {
	font-family: Poppins-Bold;
	font-size: 26px;
	line-height: 1.3846;
}

.ltext-109 {
	font-family: Poppins-Bold;
	font-size: 36px;
	line-height: 1.2;
}

@media (max-width: 767px) {
	.ltext-103 {
		font-size: clamp(1.25rem, 5vw + 0.35rem, 1.75rem);
		line-height: 1.15;
	}

	.ltext-104,
	.ltext-105 {
		font-size: clamp(1.625rem, 8vw + 0.25rem, 2.375rem);
		line-height: 1.1;
	}

	.ltext-106,
	.ltext-109 {
		font-size: clamp(1.25rem, 5vw + 0.35rem, 1.75rem);
		line-height: 1.15;
	}

	body.home-page {
		overflow-x: clip;
		max-width: 100%;
	}

	body.home-page .container {
		min-width: 0;
		max-width: 100%;
	}

	body.home-page .sec-banner .container,
	body.home-page .home-produces-section .container,
	body.home-page .home-favorite-produces-section .container,
	body.home-page .home-blog-section .container {
		overflow-x: clip;
	}
}

/*---------------------------------------------*/
.ltext-201 {
	font-family: PlayfairDisplay-Bold;
	font-size: 60px;
	line-height: 1.1;
}

.ltext-202 {
	font-family: PlayfairDisplay-Regular;
	font-size: 28px;
	line-height: 1.2857;
}

/*==================================================================
    SIZE SIZE SIZE SIZE SIZE SIZE SIZE SIZE SIZE SIZE SIZE SIZE SIZE 
==================================================================*/

/*//////////////////////////////////////////////////////////////////
[ Size ]*/
.size-101 {
	min-width: 161px;
	height: 46px;
}

.size-102 {
	min-width: 139px;
	height: 40px;
}

.size-103 {
	min-width: 179px;
	height: 46px;
}

.size-104 {
	min-width: 94px;
	height: 40px;
}

.size-105 {
	min-width: 111px;
	height: 40px;
}

.size-106 {
	width: 88px;
	height: 100%;
}

.size-107 {
	min-width: 145px;
	height: 40px;
}

.size-108 {
	width: 40px;
	height: 40px;
}

.size-109 {
	width: 60px;
	height: 60px;
}

.size-110 {
	width: 100%;
	min-height: 100px;
}

.size-111 {
	width: 100%;
	height: 40px;
}

.size-112 {
	min-width: 134px;
	height: 43px;
}

.size-113 {
	width: 38px;
	height: 60px;
}

.size-114 {
	width: calc(100% - 38px);
	height: 60px;
}

.size-115 {
	min-width: 185px;
	height: 45px;
}

.size-116 {
	width: 100%;
	height: 50px;
}

.size-117 {
	width: 220px;
	height: 45px;
}

.size-118 {
	min-width: 163px;
	height: 45px;
}

.size-119 {
	min-width: 156px;
	height: 45px;
}

.size-120 {
	width: 100%;
	min-height: 199px;
}

.size-121 {
	width: 100%;
	height: 46px;
}

.size-122 {
	width: 55px;
	height: 100%;
}

.size-123 {
	width: 70px;
	min-height: 70px;
}

.size-124 {
	width: 100%;
	min-height: 150px;
}

.size-125 {
	min-width: 180px;
	height: 40px;
}

/*//////////////////////////////////////////////////////////////////
[ Width ]*/
.size-201 {
	max-width: 270px;
}

.size-202 {
	width: calc(100%/ 3);
}

.size-203 {
	width: 105px;
}

.size-204 {
	width: calc(100% - 105px);
}

.size-205 {
	width: 145px;
}

.size-206 {
	width: calc(100% - 145px);
}

.size-207 {
	width: calc(100% - 78px);
}

.size-208 {
	width: 34.5%;
}

.size-209 {
	width: 65.5%;
}

.size-210 {
	width: 50%;
}

.size-211 {
	width: 60px;
}

.size-212 {
	width: calc(100% - 60px);
}

.size-213 {
	max-width: 245px;
}

.size-214 {
	width: 90px;
}

.size-215 {
	width: calc(100% - 110px);
}

.size-216 {
	width: 55px;
}

.size-217 {
	width: calc(100% - 55px);
}

.size-218 {
	max-width: 286px;
}

/*//////////////////////////////////////////////////////////////////
[ Height ]*/
.size-301 {
	min-height: 30px;
}

.size-302 {
	min-height: 80px;
}

.size-303 {
	height: 390px;
}

/*==================================================================
   BACKGROUND BACKGROUND BACKGROUND BACKGROUND BACKGROUND BACKGROUND 
==================================================================*/
.bg-none {
	background-color: transparent;
}

.bg0 {
	background-color: #fff;
}

.bg1 {
	background-color: var(--primary-color, #717fe0);
}

.bg2 {
	background-color: #e6e6e6;
}

.bg3 {
	background-color: var(--primary-color, #222);
}

footer.site-footer.bg3 {
	background: linear-gradient(180deg,
		color-mix(in srgb, var(--primary-color, #222) 90%, #000) 0%,
		var(--primary-color, #222) 42%,
		color-mix(in srgb, var(--primary-color, #222) 86%, #000) 100%);
	border-top: 1px solid color-mix(in srgb, var(--on-primary, #fff) 14%, transparent);
	box-shadow: inset 0 1px 0 color-mix(in srgb, var(--on-primary, #fff) 8%, transparent);
}

/* Footer / primary band: headings, body, links follow contrast vs --primary-color */
footer.bg3 .cl0 {
	color: var(--on-primary, #ffffff);
}

footer.bg3 .cl7 {
	color: var(--on-primary-muted, #e8e8e8);
}

footer.bg3 .cl6 {
	color: var(--on-primary-muted, #e8e8e8);
}

footer.bg3 p.stext-107.cl6 a {
	color: var(--on-primary-muted, #e8e8e8);
	text-decoration: underline;
	text-underline-offset: 2px;
}

footer.bg3 a.hov-cl1:hover {
	color: var(--on-primary, #ffffff) !important;
	text-decoration: underline;
}

/* Footer modernized typography + spacing */
.site-footer-grid {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 2.25rem clamp(1.75rem, 3.5vw, 3.5rem);
}

.site-footer-col {
	flex: 0 1 auto;
	min-width: 0;
	padding-bottom: 0;
}

.site-footer-col--categories {
	flex-basis: clamp(140px, 12vw, 170px);
	max-width: 170px;
}

.site-footer-col--pages {
	flex-basis: clamp(150px, 14vw, 190px);
	max-width: 190px;
}

.site-footer-col--legal {
	flex-basis: clamp(170px, 16vw, 220px);
	max-width: 220px;
}

.site-footer-col--contact {
	flex: 0 0 clamp(240px, 22vw, 272px);
	width: clamp(240px, 22vw, 272px);
	max-width: 272px;
	margin-left: auto;
}

.site-footer .site-footer-title {
	font-family: var(--main-font);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	opacity: 0.82;
	margin-bottom: 14px;
	padding-bottom: 12px;
	border-bottom: 1px solid color-mix(in srgb, var(--on-primary, #fff) 16%, transparent);
}

.site-footer .site-footer-link-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer .site-footer-link-item {
	padding-bottom: 8px;
}

.site-footer .site-footer-link-item:last-child {
	padding-bottom: 0;
}

.site-footer .site-footer-link-list--legal {
	display: block;
}

.site-footer-contact-panel {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}

.site-footer .site-footer-contact-block {
	max-width: 100%;
}

.site-footer .site-footer-contact-address {
	margin: 0;
	font-style: normal;
}

.site-footer .site-footer-contact-meta {
	margin: 0;
}

.site-footer-contact-panel .site-footer-contact-block,
.site-footer-contact-panel .site-footer-contact-block .site-footer-contact-address,
.site-footer-contact-panel .site-footer-contact-block .site-footer-contact-meta,
.site-footer-contact-panel .site-footer-contact-block a {
	font-family: var(--main-font) !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	line-height: 1.65 !important;
}

.site-footer-contact-actions {
	margin-top: 0.15rem;
}

.site-footer-col--contact .site-footer-social {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin-top: 0.1rem;
}

.site-footer .site-footer-contact-btn {
	width: 100%;
	margin-top: 0;
}

.site-footer-bottom {
	padding-top: 2.25rem;
}

.site-footer-bottom-bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid color-mix(in srgb, var(--on-primary, #fff) 12%, transparent);
}

.site-footer-legal--inline {
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 0.85rem 1.25rem;
	margin-top: 0;
}

.site-footer .site-footer-link {
	display: inline-block;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-footer .site-footer-link:hover {
	transform: translateX(3px);
}

.site-footer .site-footer-link,
.site-footer .site-footer-copyright {
	font-family: var(--main-font) !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	line-height: 1.65 !important;
}

.site-footer-legal {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.875rem;
	margin-top: 0.25rem;
}

.site-footer-legal .site-footer-copyright {
	margin: 0;
}

.site-footer-powered {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	text-decoration: none;
	border: 1px solid color-mix(in srgb, var(--on-primary, #fff) 20%, transparent);
	background: linear-gradient(135deg,
		color-mix(in srgb, var(--on-primary, #fff) 14%, transparent) 0%,
		color-mix(in srgb, var(--on-primary, #fff) 5%, transparent) 100%);
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.14);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-footer-powered:hover,
.site-footer-powered:focus-visible {
	transform: translateY(-1px);
	border-color: color-mix(in srgb, var(--on-primary, #fff) 36%, transparent);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
	outline: none;
}

.site-footer-powered__label {
	color: color-mix(in srgb, var(--on-primary, #fff) 72%, transparent);
}

.site-footer-powered__brand {
	color: var(--on-primary, #ffffff);
}

.site-footer .site-footer-contact-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 0 16px;
	border: 1px solid color-mix(in srgb, var(--on-primary, #fff) 34%, transparent);
	border-radius: 999px;
	background: color-mix(in srgb, var(--on-primary, #fff) 10%, transparent);
	color: var(--on-primary, #ffffff);
	font-family: var(--main-font);
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease,
		background-color 0.2s ease;
}

.site-footer .site-footer-contact-btn:hover {
	transform: translateY(-1px);
	border-color: color-mix(in srgb, var(--on-primary, #fff) 58%, transparent);
	background: color-mix(in srgb, var(--on-primary, #fff) 16%, transparent);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.14);
}

.js-panel-contact .js-panel-contact-inner {
	display: flex !important;
	flex-direction: column !important;
	overflow: hidden;
}

.wrap-header-cart.js-panel-contact {
	z-index: 1200;
}

.wrap-header-cart.js-panel-contact .header-cart {
	z-index: 1201;
}

.js-panel-contact .contact-us-drawer {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	background: #fff;
}

.js-panel-contact .contact-us-drawer__head {
	position: relative;
	width: 100% !important;
	max-width: 100% !important;
	height: auto !important;
	min-height: 0 !important;
	align-items: flex-start;
	flex-wrap: nowrap;
	padding: 22px 24px 18px !important;
	border-bottom: 1px solid #e9ecf3;
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.js-panel-contact .contact-us-drawer__close {
	position: absolute;
	top: 18px;
	right: 18px;
	z-index: 2;
	margin: 0;
}

.js-panel-contact .contact-us-drawer__title-wrap {
	flex: 1 1 auto;
	width: 100%;
	min-width: 0;
	padding-right: 52px;
}

.js-panel-contact .contact-us-drawer__subtitle {
	margin: 8px 0 0;
	padding-left: 34px;
	font-size: 13px;
	line-height: 1.55;
	font-weight: 500;
	color: #64748b;
	text-transform: none;
	letter-spacing: normal;
}

.js-panel-contact .contact-panel-shell {
	flex: 1 1 auto;
	min-height: 0;
	overflow-y: auto;
	padding: 20px 24px 12px;
	-webkit-overflow-scrolling: touch;
}

.js-panel-contact .contact-us-form {
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
}

.js-panel-contact .contact-us-drawer__footer {
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 16px 24px calc(18px + env(safe-area-inset-bottom, 0px));
	background: #fff;
	border-top: 1px solid #e9ecf3;
	box-shadow: 0 -10px 28px rgba(15, 23, 42, 0.06);
}

.js-panel-contact .contact-us-submit {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 1rem 1.75rem;
	border: none;
	border-radius: 999px;
	background: linear-gradient(145deg, var(--primary-color, #717fe0), color-mix(in srgb, var(--primary-color, #717fe0) 72%, #4338ca));
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	box-shadow: 0 10px 28px color-mix(in srgb, var(--primary-color, #717fe0) 34%, transparent);
	transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.js-panel-contact .contact-us-submit:hover,
.js-panel-contact .contact-us-submit:focus-visible {
	filter: brightness(1.05);
	box-shadow: 0 12px 32px color-mix(in srgb, var(--primary-color, #717fe0) 40%, transparent);
	outline: none;
}

.js-panel-contact .contact-us-submit:active {
	transform: translateY(1px);
}

.js-panel-contact .contact-us-submit.is-loading,
.js-panel-contact .contact-us-submit:disabled {
	opacity: 0.78;
	pointer-events: none;
}

.js-panel-contact .contact-us-form-alert {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 16px;
	padding: 12px 14px;
	border-radius: 12px;
	font-size: 13px;
	line-height: 1.45;
	font-weight: 500;
}

.js-panel-contact .contact-us-form-alert.is-error {
	background: color-mix(in srgb, #ef4444 10%, #fff);
	border: 1px solid color-mix(in srgb, #ef4444 28%, #fecaca);
	color: #b91c1c;
}

.js-panel-contact .contact-us-form-alert.is-success {
	background: color-mix(in srgb, #22c55e 12%, #fff);
	border: 1px solid color-mix(in srgb, #22c55e 28%, #bbf7d0);
	color: #15803d;
}

.js-panel-contact .contact-us-form-alert i {
	margin-top: 1px;
	font-size: 15px;
	flex-shrink: 0;
}

.js-panel-contact .contact-us-field-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 16px;
}

.js-panel-contact .contact-us-field {
	margin-bottom: 16px;
}

.js-panel-contact .contact-us-field-grid .contact-us-field {
	margin-bottom: 0;
}

.js-panel-contact .contact-us-field--message {
	margin-bottom: 0;
}

.js-panel-contact .contact-us-label {
	display: block;
	margin-bottom: 7px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: #64748b;
}

.js-panel-contact .checkout-rounded-field {
	border-radius: 12px !important;
	border: 1px solid #e2e8f0 !important;
	background: #fff !important;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.js-panel-contact .checkout-rounded-field input,
.js-panel-contact .checkout-rounded-field textarea {
	border: none;
	background: transparent;
	width: 100%;
	min-height: 48px;
	font-size: 15px;
	color: #0f172a;
}

.js-panel-contact .contact-us-message-wrap {
	min-height: 128px;
}

.js-panel-contact .contact-us-message {
	min-height: 112px;
	max-height: 220px;
	resize: vertical;
}

body.contact-drawer-open {
	overflow: hidden;
}

body.contact-drawer-open .btn-back-to-top {
	display: none !important;
	visibility: hidden;
	pointer-events: none;
}

body.contact-drawer-open #checkout-sticky-bar-mount > .cart-sticky-bar--interactive:not(.cart-sticky-bar--embedded) {
	visibility: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

body.contact-drawer-open .cart-sticky-bar-spacer {
	height: 0 !important;
}

body.account-drawer-open .btn-back-to-top {
	display: none !important;
	visibility: hidden;
	pointer-events: none;
}

body.account-drawer-open .checkout-sticky-dock {
	visibility: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

body.account-drawer-open #checkout-sticky-bar-mount > .cart-sticky-bar--interactive:not(.cart-sticky-bar--embedded),
body.account-drawer-open #checkout-sticky-bar-mount > .cart-sticky-bar--dock {
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

body.account-drawer-open .cart-sticky-bar-spacer {
	height: 0 !important;
}

@media (min-width: 768px) {
	.js-panel-contact .header-cart.contact-us-drawer {
		width: min(460px, calc(100vw - 40px));
		max-width: 460px;
	}

	.js-panel-contact .contact-us-drawer__head {
		padding: 26px 28px 20px !important;
	}

	.js-panel-contact .contact-panel-shell {
		padding: 22px 28px 16px;
	}

	.js-panel-contact .contact-us-drawer__footer {
		padding: 16px 28px 24px;
	}
}

@media (max-width: 767px) {
	.js-panel-contact .contact-us-drawer__head {
		padding: calc(14px + env(safe-area-inset-top, 0px)) 18px 16px !important;
	}

	.js-panel-contact .contact-us-drawer__close {
		top: calc(12px + env(safe-area-inset-top, 0px));
		right: 14px;
	}

	.js-panel-contact .contact-us-drawer__subtitle {
		padding-left: 0;
		margin-top: 10px;
		font-size: 12px;
	}

	.js-panel-contact .header-drawer-title-text {
		flex-wrap: nowrap;
	}

	.js-panel-contact .contact-panel-shell {
		padding: 16px 18px 10px;
	}

	.js-panel-contact .contact-us-drawer__footer {
		padding: 14px 18px calc(16px + env(safe-area-inset-bottom, 0px));
	}

	.js-panel-contact .contact-us-submit {
		padding: 0.95rem 1.5rem;
		font-size: 0.95rem;
	}

	.js-panel-contact .contact-us-field-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
}

@media (max-width: 420px) {
	.js-panel-contact .contact-us-field-grid .contact-us-field {
		margin-bottom: 0;
	}
}

.site-footer .site-footer-social a {
	width: 30px;
	height: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid color-mix(in srgb, var(--on-primary, #fff) 26%, transparent);
	border-radius: 999px;
	margin-right: 0;
	background: color-mix(in srgb, var(--on-primary, #fff) 8%, transparent);
	transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.site-footer .site-footer-social a:last-child {
	margin-right: 0;
}

.site-footer .site-footer-social a:hover {
	transform: translateY(-1px);
	border-color: color-mix(in srgb, var(--on-primary, #fff) 48%, transparent);
	background: color-mix(in srgb, var(--on-primary, #fff) 14%, transparent);
	text-decoration: none !important;
}

.site-footer .site-footer-social a.hov-cl1:hover {
	text-decoration: none !important;
}

.site-footer .site-footer-social a svg {
	width: 14px;
	height: 14px;
	display: block;
	fill: currentColor;
}

/* Footer — secure shopping + payment logos */
.site-footer-payments-wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.85rem;
	width: 100%;
	max-width: 380px;
	margin: 0;
	padding: 0.9rem 1rem;
	border-radius: 12px;
	background: color-mix(in srgb, var(--on-primary, #fff) 6%, transparent);
	border: 1px solid color-mix(in srgb, var(--on-primary, #fff) 12%, transparent);
}

.site-footer-secure {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
}

.site-footer-secure__icon {
	width: 2.5rem;
	height: 2.5rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	font-size: 1rem;
	color: var(--on-primary, #ffffff);
	background: color-mix(in srgb, var(--on-primary, #fff) 14%, transparent);
	border: 1px solid color-mix(in srgb, var(--on-primary, #fff) 24%, transparent);
}

.site-footer-secure__text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.15rem;
	line-height: 1.2;
}

.site-footer-secure__title {
	font-family: var(--main-font);
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--on-primary, #ffffff);
	text-transform: uppercase;
}

.site-footer-secure__badge {
	font-family: var(--main-font);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	color: var(--on-primary-muted, #e8e8e8);
}

.site-footer .site-footer-payments {
	column-gap: 1rem;
	row-gap: 0.75rem;
	justify-content: flex-start;
	width: 100%;
}

.site-footer .site-footer-payments .site-footer-payment-logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	vertical-align: middle;
}

.site-footer .site-footer-payments .site-footer-payment-logo img {
	height: 22px;
	width: auto;
	max-width: 58px;
	object-fit: contain;
	display: block;
	filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06));
}

@media ( min-width : 768px) {
	.site-footer-payments-wrap {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
		max-width: 100%;
		gap: 1.25rem 1.75rem;
	}

	.site-footer .site-footer-payments {
		flex: 1 1 auto;
		justify-content: flex-end;
		width: auto;
	}
}

.checkout-payment-logos {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	column-gap: 1.125rem;
	row-gap: 0.75rem;
}

.checkout-payment-logos .checkout-payment-logo {
	height: 24px;
	width: auto;
	max-width: 68px;
	object-fit: contain;
	vertical-align: middle;
	opacity: 0.88;
	filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.05));
}

/* Dynamic font bindings for utility typography classes */
.stext-101, .stext-102, .stext-103, .stext-104, .stext-105, .stext-106,
.stext-107, .stext-108, .stext-109, .stext-110, .stext-111, .stext-112,
.stext-113, .stext-114, .stext-115, .stext-116, .stext-117, .mtext-101,
.mtext-102, .mtext-104, .mtext-105, .mtext-106, .mtext-107, .mtext-108,
.mtext-110 {
	font-family: var(--main-font) !important;
}

.stext-301, .mtext-103, .mtext-109, .mtext-111, .mtext-112, .mtext-113,
.ltext-101, .ltext-102, .ltext-103, .ltext-104, .ltext-105, .ltext-106,
.ltext-107, .ltext-108, .ltext-109, .ltext-201, .ltext-202 {
	font-family: var(--accent-font) !important;
}

@media (max-width: 1199px) {
	.site-footer-col--categories,
	.site-footer-col--pages,
	.site-footer-col--legal {
		flex-basis: calc(50% - 1rem);
		max-width: none;
	}

	.site-footer-col--contact {
		flex: 1 1 100%;
		width: 100%;
		max-width: 320px;
		margin-left: 0;
	}
}

@media ( max-width : 767px) {
	.site-footer-bottom-bar {
		flex-direction: column;
		align-items: stretch;
	}

	.site-footer-legal--inline {
		justify-content: center;
	}

	.site-footer-grid {
		flex-direction: column;
		align-items: center;
		gap: 2rem;
	}

	.site-footer-col--categories,
	.site-footer-col--pages,
	.site-footer-col--legal,
	.site-footer-col--contact {
		flex: 1 1 100%;
		width: 100%;
		max-width: 320px;
	}

	.site-footer-col--contact {
		margin-left: 0;
	}

	.site-footer .site-footer-col {
		text-align: center;
	}

	.site-footer .site-footer-title {
		text-align: center;
	}

	.site-footer .site-footer-col ul {
		padding-left: 0;
		text-align: center;
	}

	.site-footer .site-footer-link {
		display: inline-block;
	}

	.site-footer .site-footer-contact-block {
		text-align: center;
		width: 100%;
		margin-left: auto;
		margin-right: auto;
		box-sizing: border-box;
	}

	.site-footer .site-footer-contact-address,
	.site-footer .site-footer-contact-meta {
		text-align: center;
	}

	.site-footer-col--contact .site-footer-social {
		justify-content: center;
	}

	.site-footer .site-footer-social a {
		margin-right: 0;
	}

	.site-footer-payments-wrap {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.site-footer-secure {
		justify-content: center;
	}

	.site-footer-secure__text {
		align-items: center;
	}

	.site-footer .site-footer-payments {
		justify-content: center;
		width: 100%;
	}

	.site-footer .site-footer-copyright {
		text-align: center;
	}
}

.bg5 {
	background-color: rgba(0, 0, 0, 0.5);
}

.bg6 {
	background-color: #f2f2f2;
}

.bg7 {
	background-color: #333;
}

.bg8 {
	background-color: #f3f3f3;
}

.bg9 {
	background-color: rgba(255, 255, 255, 0.9);
}

/*---------------------------------------------*/
.bg-overlay1::before {
	content: "";
	position: absolute;
	z-index: -100;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #000;
	opacity: 0.5;
}

/*---------------------------------------------*/
.bg-img1 {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

/*==================================================================
       BORDER BORDER  BORDER  BORDER  BORDER  BORDER  BORDER  BORDER
==================================================================*/
.bor0 {
	border-radius: 50%;
}

.bor1 {
	border-radius: 23px;
}

.bor2 {
	border-radius: 20px;
}

.bor3 {
	border-bottom: 1px solid transparent;
}

.bor4 {
	border: 1px solid #e6e6e6;
	border-radius: 3px;
}

.bor5 {
	border-left: 1px solid #e5e5e5;
	border-right: 1px solid #e5e5e5;
}

.bor6 {
	border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.bor7 {
	border: 1px solid #ccc;
	border-radius: 15px;
}

.bor8 {
	border: 1px solid #e6e6e6;
	border-radius: 2px;
}

.bor9 {
	border-right: 1px solid #e6e6e6;
}

.bor10 {
	border: 1px solid #e6e6e6;
}

.bor11 {
	border-radius: 21px;
}

.bor12 {
	border-bottom: 1px dashed #d9d9d9;
}

.bor13 {
	border: 1px solid #e6e6e6;
	border-radius: 22px;
}

.bor14 {
	border-radius: 25px;
}

.bor15 {
	border-left: 1px solid #e6e6e6;
	border-right: 1px solid #e6e6e6;
	border-bottom: 1px solid #e6e6e6;
}

.bor16 {
	border-left: 3px solid #e6e6e6;
}

.bor17 {
	border: 1px solid #e6e6e6;
	border-radius: 25px;
}

/*---------------------------------------------*/
.bor18 {
	border-top: 1px solid #e6e6e6;
}

.bor18:last-child {
	border-bottom: 1px solid #e6e6e6;
}

/*---------------------------------------------*/
.bor19 {
	border: 1px solid #d9d9d9;
	border-radius: 2px;
}

/*==================================================================
 HOW HOW HOW HOW HOW HOW HOW HOW HOW HOW HOW HOW HOW HOW HOW HOW HOW 
==================================================================*/
.plh0::-webkit-input-placeholder {
	color: #999999;
}

.plh0:-moz-placeholder {
	color: #999999;
}

.plh0::-moz-placeholder {
	color: #999999;
}

.plh0:-ms-input-placeholder {
	color: #999999;
}

.plh1::-webkit-input-placeholder {
	color: #b2b2b2;
}

.plh1:-moz-placeholder {
	color: #b2b2b2;
}

.plh1::-moz-placeholder {
	color: #b2b2b2;
}

.plh1:-ms-input-placeholder {
	color: #b2b2b2;
}

.plh2::-webkit-input-placeholder {
	color: #333;
}

.plh2:-moz-placeholder {
	color: #333;
}

.plh2::-moz-placeholder {
	color: #333;
}

.plh2:-ms-input-placeholder {
	color: #333;
}

.plh3::-webkit-input-placeholder {
	color: #555;
}

.plh3:-moz-placeholder {
	color: #555;
}

.plh3::-moz-placeholder {
	color: #555;
}

.plh3:-ms-input-placeholder {
	color: #555;
}

.plh4::-webkit-input-placeholder {
	color: #888;
}

.plh4:-moz-placeholder {
	color: #888;
}

.plh4::-moz-placeholder {
	color: #888;
}

.plh4:-ms-input-placeholder {
	color: #888;
}

/*---------------------------------------------*/
.js-addedwish-detail {
	color: #6c7ae0;
}

/*---------------------------------------------*/
.label1 {
	position: relative;
}

.label1::after {
	content: attr(data-label1);
	font-family: Poppins-Regular;
	font-size: 10px;
	line-height: 15px;
	color: #fff;
	text-transform: uppercase;
	text-align: center;
	display: block;
	position: absolute;
	top: 3px;
	right: -9px;
	height: 15px;
	min-width: 32px;
	border-radius: 7px;
	padding: 0 4px;
	background-color: #f74877;
}

.label1.rs1::after {
	top: calc(50% - 8px);
	right: auto;
	left: 90%;
}

/*---------------------------------------------*/
.how-active1 {
	color: #333;
	border-color: #797979;
}

/*---------------------------------------------*/
.wrap-input1 {
	position: relative;
	border-bottom: 2px solid rgba(204, 204, 204, 0.1);
}

.input1 {
	background-color: transparent;
	width: 100%;
}

.focus-input1 {
	position: absolute;
	width: 0%;
	height: 2px;
	background-color: #6774d5;
	left: 0;
	bottom: -2px;
}

.input1:focus+.focus-input1 {
	width: 100%;
}

/*---------------------------------------------*/
.how-pagination1 {
	font-family: Poppins-Regular;
	font-size: 14px;
	color: #808080;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid #e6e6e6;
}

.how-pagination1:hover {
	background-color: #999;
	border-color: #999;
	color: #fff;
}

.active-pagination1 {
	background-color: #999;
	border-color: #999;
	color: #fff;
}

/*---------------------------------------------*/
.how-shadow1 {
	box-shadow: 0 0px 3px 0px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0 0px 3px 0px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 0 0px 3px 0px rgba(0, 0, 0, 0.2);
	-o-box-shadow: 0 0px 3px 0px rgba(0, 0, 0, 0.2);
	-ms-box-shadow: 0 0px 3px 0px rgba(0, 0, 0, 0.2);
}

/*---------------------------------------------*/
.how-pos1 {
	position: absolute;
	top: 10px;
	right: 10px;
}

/*---------------------------------------------*/
.how-pos2 {
	padding-left: 10.7%;
	padding-right: 11%;
}

@media ( max-width : 991px) {
	.how-pos2 {
		padding-left: 8%;
		padding-right: 8%;
	}
}

/*---------------------------------------------*/
.how-pos3-parent {
	position: relative;
}

.how-pos3 {
	position: absolute;
	top: -35px;
	right: 0px;
}

/*---------------------------------------------*/
.how-pos4-parent {
	position: relative;
}

.how-pos4 {
	position: absolute;
	top: calc(50% - 9px);
	left: 28px;
}

/*---------------------------------------------*/
.how-pos5-parent {
	position: relative;
}

.how-pos5 {
	position: absolute;
	top: 15px;
	left: 10px;
}

/*---------------------------------------------*/
.how-itemcart1 {
	width: 60px;
	position: relative;
	margin-right: 20px;
	cursor: pointer;
}

.how-itemcart1 img {
	width: 100%;
}

.how-itemcart1::after {
	content: '\e870';
	font-family: Linearicons-Free;
	font-size: 16px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.5);
	color: #fff;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	-moz-transition: all 0.3s;
	opacity: 0;
}

.how-itemcart1:hover:after {
	opacity: 1;
}

/*---------------------------------------------*/
.how-bor2, .how-bor1 {
	position: relative;
	z-index: 1;
}

.how-bor2::before, .how-bor1::before {
	content: "";
	display: block;
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	border: 3px solid #ccc;
}

.how-bor1::before {
	bottom: -21px;
	left: -21px;
}

@media ( max-width : 767px) {
	.how-bor1::before {
		bottom: -21px;
		right: -21px;
		left: auto;
	}
}

.how-bor2::before {
	bottom: -21px;
	right: -21px;
}

/*==================================================================
      PSEUDO PSEUDO PSEUDO PSEUDO PSEUDO PSEUDO PSEUDO PSEUDO PSEUDO
==================================================================*/

/*//////////////////////////////////////////////////////////////////
[ Focus ]*/
.focus-in0:focus::-webkit-input-placeholder {
	color: transparent;
}

.focus-in0:focus:-moz-placeholder {
	color: transparent;
}

.focus-in0:focus::-moz-placeholder {
	color: transparent;
}

.focus-in0:focus:-ms-input-placeholder {
	color: transparent;
}

/*//////////////////////////////////////////////////////////////////
[ Hover ]*/
.hov-cl0:hover {
	color: #fff;
}

.hov-bg0:hover {
	background-color: #fff;
}

.hov-cl1:hover {
	color: var(--primary-color, #717fe0);
}

.hov-bg1:hover {
	background-color: #717fe0;
}

/*---------------------------------------------*/
.hov-img0 {
	display: block;
	overflow: hidden;
}

.hov-img0 img {
	width: 100%;
	-webkit-transition: transform 0.9s ease;
	-o-transition: transform 0.9s ease;
	-moz-transition: transform 0.9s ease;
	transition: transform 0.9s ease;
}

.hov-img0:hover img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}

/*---------------------------------------------*/
.hov-btn1:hover {
	border-color: var(--primary-color, #222);
	background-color: var(--primary-color, #222);
	color: var(--on-primary, #ffffff);
}

.hov-btn1:hover i {
	color: var(--on-primary, #ffffff);
}

/*---------------------------------------------*/
.hov-btn2:hover {
	border-color: #fff;
	background-color: #fff;
	color: #717fe0;
}

/*---------------------------------------------*/
.hov-btn3:hover {
	border-color: var(--primary-color, #717fe0);
	background-color: var(--primary-color, #717fe0);
	color: var(--on-primary, #ffffff);
}

.hov-btn3:hover i {
	color: var(--on-primary, #ffffff);
}

/*---------------------------------------------*/
.hov-tag1:hover {
	color: #717fe0;
	border-color: #717fe0;
}

/*---------------------------------------------*/
.hov-ovelay1 {
	position: relative;
}

.hov-ovelay1::after {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(103, 117, 214, 0.8);
	opacity: 0;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	-moz-transition: all 0.3s;
}

.hov-ovelay1:hover:after {
	opacity: 1;
}

/*---------------------------------------------*/
.hov1:hover {
	color: #333;
	border-color: #797979;
}

/*---------------------------------------------*/
.hov2:hover {
	background-color: #f2f2f2;
}

/*---------------------------------------------*/
.hov3 {
	opacity: 0.6;
}

.hov3:hover {
	opacity: 1;
}

/*==================================================================
  RESPONSIVE RESPONSIVE RESPONSIVE RESPONSIVE RESPONSIVE RESPONSIVE
==================================================================*/

/*//////////////////////////////////////////////////////////////////
[ XL ]*/
@media ( max-width : 1199px) {
	.m-0-xl {
		margin: 0;
	}
	.m-lr-0-xl {
		margin-left: 0;
		margin-right: 0;
	}
	.m-lr-15-xl {
		margin-left: 15px;
		margin-right: 15px;
	}
	.m-l-0-xl {
		margin-left: 0;
	}
	.m-r-0-xl {
		margin-right: 0;
	}
	.m-l-15-xl {
		margin-left: 15px;
	}
	.m-r-15-xl {
		margin-right: 15px;
	}
	.p-0-xl {
		padding: 0;
	}
	.p-lr-0-xl {
		padding-left: 0;
		padding-right: 0;
	}
	.p-lr-15-xl {
		padding-left: 15px;
		padding-right: 15px;
	}
	.p-l-0-xl {
		padding-left: 0;
	}
	.p-r-0-xl {
		padding-right: 0;
	}
	.p-l-15-xl {
		padding-left: 15px;
	}
	.p-r-15-xl {
		padding-right: 15px;
	}
	.w-full-xl {
		width: 100%;
	}

	/*---------------------------------------------*/
}

/*//////////////////////////////////////////////////////////////////
[ LG ]*/
@media ( max-width : 991px) {
	.m-0-lg {
		margin: 0;
	}
	.m-lr-0-lg {
		margin-left: 0;
		margin-right: 0;
	}
	.m-lr-15-lg {
		margin-left: 15px;
		margin-right: 15px;
	}
	.m-l-0-lg {
		margin-left: 0;
	}
	.m-r-0-lg {
		margin-right: 0;
	}
	.m-l-15-lg {
		margin-left: 15px;
	}
	.m-r-15-lg {
		margin-right: 15px;
	}
	.p-0-lg {
		padding: 0;
	}
	.p-lr-0-lg {
		padding-left: 0;
		padding-right: 0;
	}
	.p-lr-15-lg {
		padding-left: 15px;
		padding-right: 15px;
	}
	.p-l-0-lg {
		padding-left: 0;
	}
	.p-r-0-lg {
		padding-right: 0;
	}
	.p-l-15-lg {
		padding-left: 15px;
	}
	.p-r-15-lg {
		padding-right: 15px;
	}
	.w-full-lg {
		width: 100%;
	}

	/*---------------------------------------------*/
	.respon4 {
		width: 50%;
	}

	/*---------------------------------------------*/
	.respon5 {
		padding-top: 50px;
		padding-bottom: 50px;
	}
}

/*//////////////////////////////////////////////////////////////////
[ MD ]*/
@media ( max-width : 767px) {
	.m-0-md {
		margin: 0;
	}
	.m-lr-0-md {
		margin-left: 0;
		margin-right: 0;
	}
	.m-lr-15-md {
		margin-left: 15px;
		margin-right: 15px;
	}
	.m-l-0-md {
		margin-left: 0;
	}
	.m-r-0-md {
		margin-right: 0;
	}
	.m-l-15-md {
		margin-left: 15px;
	}
	.m-r-15-md {
		margin-right: 15px;
	}
	.p-0-md {
		padding: 0;
	}
	.p-lr-0-md {
		padding-left: 0;
		padding-right: 0;
	}
	.p-lr-15-md {
		padding-left: 15px;
		padding-right: 15px;
	}
	.p-l-0-md {
		padding-left: 0;
	}
	.p-r-0-md {
		padding-right: 0;
	}
	.p-l-15-md {
		padding-left: 15px;
	}
	.p-r-15-md {
		padding-right: 15px;
	}
	.w-full-md {
		width: 100%;
	}

	/*---------------------------------------------*/
	.respon4 {
		width: 100%;
	}
}

/*//////////////////////////////////////////////////////////////////
[ SM ]*/
@media ( max-width : 575px) {
	.m-0-sm {
		margin: 0;
	}
	.m-lr-0-sm {
		margin-left: 0;
		margin-right: 0;
	}
	.m-lr-15-sm {
		margin-left: 15px;
		margin-right: 15px;
	}
	.m-l-0-sm {
		margin-left: 0;
	}
	.m-r-0-sm {
		margin-right: 0;
	}
	.m-l-15-sm {
		margin-left: 15px;
	}
	.m-r-15-sm {
		margin-right: 15px;
	}
	.p-0-sm {
		padding: 0;
	}
	.p-lr-0-sm {
		padding-left: 0;
		padding-right: 0;
	}
	.p-lr-15-sm {
		padding-left: 15px;
		padding-right: 15px;
	}
	.p-l-0-sm {
		padding-left: 0;
	}
	.p-r-0-sm {
		padding-right: 0;
	}
	.p-l-15-sm {
		padding-left: 15px;
	}
	.p-r-15-sm {
		padding-right: 15px;
	}
	.w-full-sm {
		width: 100%;
	}

	/*---------------------------------------------*/
	.respon1 {
		font-size: 40px;
	}

	/*---------------------------------------------*/
	.respon2 {
		font-size: 20px;
	}

	/*---------------------------------------------*/
	.respon6 {
		width: 65px;
	}
	.respon6-next {
		width: calc(100% - 65px);
	}

	/*---------------------------------------------*/
	.respon7 {
		padding-left: 60px;
	}
}

/*//////////////////////////////////////////////////////////////////
[ SSM ]*/
@media ( max-width : 480px) {
	.m-0-ssm {
		margin: 0;
	}
	.m-lr-0-ssm {
		margin-left: 0;
		margin-right: 0;
	}
	.m-lr-15-ssm {
		margin-left: 15px;
		margin-right: 15px;
	}
	.m-l-0-ssm {
		margin-left: 0;
	}
	.m-r-0-ssm {
		margin-right: 0;
	}
	.m-l-15-ssm {
		margin-left: 15px;
	}
	.m-r-15-ssm {
		margin-right: 15px;
	}
	.p-0-ssm {
		padding: 0;
	}
	.p-lr-0-ssm {
		padding-left: 0;
		padding-right: 0;
	}
	.p-lr-15-ssm {
		padding-left: 15px;
		padding-right: 15px;
	}
	.p-l-0-ssm {
		padding-left: 0;
	}
	.p-r-0-ssm {
		padding-right: 0;
	}
	.p-l-15-ssm {
		padding-left: 15px;
	}
	.p-r-15-ssm {
		padding-right: 15px;
	}
	.w-full-ssm {
		width: 100%;
	}

	/*---------------------------------------------*/
	.respon3 {
		padding: 20px;
	}
}

#modal-images-container .item-slick3 {
	width: 100%;
	aspect-ratio: 3/4;
	display: flex !important;
	align-items: center;
	justify-content: center;
	background-color: #f7f7f7;
	overflow: hidden;
	border-radius: 8px;
}

#modal-images-container .item-slick3 img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 10px;
}

.slick3-dots li {
	width: 60px !important;
	height: 60px !important;
	margin-bottom: 10px !important;
}

.slick3-dots li img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
}

@media ( max-width : 767px) {
	.arrow-slick3 {
		position: absolute !important;
		top: 50% !important;
		transform: translateY(-50%) !important;
		width: 35px !important;
		height: 35px !important;
		background-color: rgba(0, 0, 0, 0.3) !important;
		color: white !important;
		border-radius: 50% !important;
		display: flex !important;
		align-items: center;
		justify-content: center;
		z-index: 100 !important;
		border: none !important;
	}
	.prev-slick3 {
		left: 10px !important;
	}
	.next-slick3 {
		right: 10px !important;
	}
	.arrow-slick3 i {
		font-size: 18px !important;
		margin: 0 !important;
	}
	.wrap-slick3 {
		position: relative !important;
	}
	.wrap-slick3-dots {
		margin-bottom: 15px !important;
	}
}

.wrap-header-account {
	position: fixed;
	z-index: 1190;
	width: 100%;
	height: 100vh;
	top: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.0);
	visibility: hidden;
	-webkit-transition: background-color 0.28s ease, visibility 0s linear 0.28s;
	-o-transition: background-color 0.28s ease, visibility 0s linear 0.28s;
	-moz-transition: background-color 0.28s ease, visibility 0s linear 0.28s;
	transition: background-color 0.28s ease, visibility 0s linear 0.28s;
}

.wrap-header-account.show-header-account {
	visibility: visible;
	z-index: 1200;
	background-color: rgba(15, 23, 42, 0.58);
	-webkit-transition: background-color 0.28s ease, visibility 0s;
	-o-transition: background-color 0.28s ease, visibility 0s;
	-moz-transition: background-color 0.28s ease, visibility 0s;
	transition: background-color 0.28s ease, visibility 0s;
}

.show-header-account .header-cart {
	right: 0 !important;
}

.wrap-header-account .header-cart {
	right: -400px;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
}

/* Sepet içindeki artı-eksi kutusunu biraz daha kibar yapar */
.header-cart-item-txt .wrap-num-produce {
	width: 100px;
	height: 35px;
}

.header-cart-item-txt .num-produce {
	width: calc(100% - 60px); /* 30px down, 30px up butonu için */
}

.header-cart-item-txt .btn-num-produce-down, .header-cart-item-txt .btn-num-produce-up
{
	width: 30px;
	height: 100%;
	cursor: pointer; /* Tıklanabilir olduğunu hissettirir */
}

.wrap-header-account {
	position: fixed;
	z-index: 1190;
	width: 100%;
	height: 100vh;
	top: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.0);
	visibility: hidden;
	-webkit-transition: background-color 0.28s ease, visibility 0s linear 0.28s;
	-o-transition: background-color 0.28s ease, visibility 0s linear 0.28s;
	-moz-transition: background-color 0.28s ease, visibility 0s linear 0.28s;
	transition: background-color 0.28s ease, visibility 0s linear 0.28s;
}

.wrap-header-account.show-header-account {
	visibility: visible;
	z-index: 1200;
	background-color: rgba(15, 23, 42, 0.58);
	-webkit-transition: background-color 0.28s ease, visibility 0s;
	-o-transition: background-color 0.28s ease, visibility 0s;
	-moz-transition: background-color 0.28s ease, visibility 0s;
	transition: background-color 0.28s ease, visibility 0s;
}

.header-account {
	position: fixed;
	z-index: 1201;
	width: 390px;
	max-width: calc(100% - 30px);
	height: 100vh;
	top: 0;
	right: -400px;
	background-color: #f6f7fb;
	-webkit-transition: right 0.32s cubic-bezier(0.32, 0.72, 0, 1);
	-o-transition: right 0.32s cubic-bezier(0.32, 0.72, 0, 1);
	-moz-transition: right 0.32s cubic-bezier(0.32, 0.72, 0, 1);
	transition: right 0.32s cubic-bezier(0.32, 0.72, 0, 1);
	box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.18);
}

.wrap-header-account.show-header-account .header-account {
	right: 0;
}

.wrap-header-account .s-full {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	cursor: pointer;
}

.header-account::after {
	content: "";
	display: block;
	width: 100%;
	height: 50px;
}

.js-pscroll {
	position: relative;
	overflow: hidden;
}

.js-addcart-detail {
	cursor: pointer;
}

/* Mini Sepet (Header Cart) Produce Button Styling — legacy header dropdown only */
.header-cart:not(.mini-drawer-panel) .wrap-num-produce {
    width: 90px !important;
    height: 32px !important;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
}

.header-cart:not(.mini-drawer-panel) .btn-num-produce-down,
.header-cart:not(.mini-drawer-panel) .btn-num-produce-up {
    width: 30px !important;
    height: 100% !important;
    cursor: pointer;
    background-color: transparent;
    transition: all 0.4s;
}

.header-cart:not(.mini-drawer-panel) .btn-num-produce-down:hover,
.header-cart:not(.mini-drawer-panel) .btn-num-produce-up:hover {
    background-color: #717fe0;
    color: #fff;
}

.header-cart:not(.mini-drawer-panel) .num-produce {
    width: calc(100% - 60px) !important;
    height: 100% !important;
    background-color: transparent;
    border-left: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
    font-family: Poppins-Medium;
    font-size: 13px;
    color: #333;
    padding: 0;
}

/* Wishlist drawer: column layout so CTA sits on bottom, list scrolls */
.js-panel-wishlist .js-panel-wishlist-inner {
	display: flex !important;
	flex-direction: column !important;
	overflow: hidden;
}

.js-panel-wishlist .wishlist-panel-shell {
	flex: 1 1 auto;
	min-height: 0;
	display: flex;
	flex-direction: column;
	width: 100%;
}

/* Mini cart drawer: same column + shell as wishlist */
.js-panel-cart .js-panel-cart-inner {
	display: flex !important;
	flex-direction: column !important;
	overflow: hidden;
}

.js-panel-cart .cart-panel-shell {
	flex: 1 1 auto;
	min-height: 0;
	display: flex;
	flex-direction: column;
	width: 100%;
}

/* Mini drawer (cart + wishlist + contact + account) — shared panel */
.js-panel-cart .mini-drawer-panel,
.js-panel-wishlist .mini-drawer-panel,
.js-panel-contact .mini-drawer-panel,
.js-panel-account .mini-drawer-panel {
	background: #f6f7fb;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.js-panel-cart .header-cart-title,
.js-panel-wishlist .header-cart-title {
	width: 100% !important;
	max-width: 100% !important;
}

.js-panel-cart .mini-drawer-title,
.js-panel-wishlist .mini-drawer-title {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	margin: 0 !important;
	padding: 18px 14px 14px 16px !important;
	height: auto !important;
	min-height: 0 !important;
	border-bottom: 1px solid #e9ecf3;
	background: #fff;
}

.header-drawer-title-text {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	flex-wrap: nowrap;
}

.mini-drawer-title-label {
	font-weight: 700;
}

.mini-drawer-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 22px;
	padding: 0 7px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	background: var(--primary-color, #717fe0);
	color: var(--on-primary, #fff);
}

.header-drawer-title-icon--wishlist {
	color: #ef4444;
}

.mini-drawer-close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #eef0f4;
	color: #4b5563;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	flex-shrink: 0;
	transition: background-color 0.2s, color 0.2s;
}

.mini-drawer-close:hover {
	background: #e5e7eb;
	color: #111827;
}

.mini-drawer-body {
	display: flex !important;
	flex-direction: column !important;
	flex: 1 1 auto !important;
	min-height: 0 !important;
	width: 100%;
	background: #f6f7fb;
}

.mini-drawer-scroll {
	flex: 1 1 auto;
	min-height: 0;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	padding: 4px 12px 12px;
	width: 100%;
	list-style: none;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	box-sizing: border-box;
}

.mini-drawer-item-card {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 12px;
	border: 1px solid #e8ecf4;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
	width: 100%;
	box-sizing: border-box;
}

.mini-drawer-item-card--empty {
	border: none;
	box-shadow: none;
	background: transparent;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 48px 20px;
	min-height: 200px;
}

.mini-drawer-empty-icon {
	font-size: 48px;
	color: #d1d5db;
	margin-bottom: 12px;
	line-height: 1;
}

.mini-drawer-empty-text {
	font-size: 14px;
	color: #6b7280;
	margin-bottom: 16px;
}

.mini-drawer-empty-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 22px;
	border-radius: 999px;
	background: var(--primary-color, #717fe0);
	color: var(--on-primary, #fff);
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
}

.mini-drawer-item-img {
	display: block;
	position: relative;
	width: 68px;
	height: 68px;
	flex-shrink: 0;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid #e5e7eb;
	--block2-badge-inset: 4px;
}

.mini-drawer-item-img .block2-pic-badges--discount {
	right: var(--block2-badge-inset);
	bottom: var(--block2-badge-inset);
	z-index: 2;
	max-width: calc(100% - var(--block2-badge-inset) * 2);
}

.mini-drawer-item-img .block2-discount-badge {
	padding: 0.2rem 0.34rem 0.18rem 0.28rem;
	border-radius: 0.32rem;
	gap: 0.12rem;
}

.mini-drawer-item-img .block2-discount-badge__value {
	font-size: 0.5625rem;
}

.mini-drawer-item-img .block2-discount-badge__label {
	font-size: 0.4375rem;
	letter-spacing: 0.02em;
}

.mini-drawer-item-img::before,
.mini-drawer-item-img::after {
	display: none !important;
	content: none !important;
}

.mini-drawer-item-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mini-drawer-item-body {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.mini-drawer-item-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 8px;
}

.mini-drawer-item-info {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.5rem;
}

.mini-drawer-item-name {
	font-size: 13px;
	font-weight: 600;
	color: #1f2937;
	line-height: 1.4;
	text-decoration: none;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.mini-drawer-item-variant {
	display: block;
	font-size: 11px;
	color: #9ca3af;
	line-height: 1.35;
	margin: 0;
}

.mini-drawer-item-info .mini-cart-stock-slot {
	margin: 0;
	min-height: 0;
}

.mini-drawer-item-info .mini-cart-stock-slot:empty {
	display: none;
}

.mini-drawer-item-remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	padding: 0;
	border: 0;
	border-radius: 8px;
	background: transparent;
	color: #cbd5e1;
	font-size: 18px;
	cursor: pointer;
	flex-shrink: 0;
	transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.mini-drawer-item-remove:hover {
	color: #ef4444;
	background: #fef2f2;
}

/* myCart / myWishlist drawer — aynı silme ikonu standardı */
.js-panel-cart .mini-drawer-item-remove,
.js-panel-wishlist .mini-drawer-item-remove {
	color: var(--primary-color, #717fe0);
	width: 2.5rem;
	height: 2.5rem;
	font-size: 1.45rem;
	background: color-mix(in srgb, var(--primary-color, #717fe0) 10%, #ffffff);
	border: 1px solid color-mix(in srgb, var(--primary-color, #717fe0) 22%, #e5e7eb);
	border-radius: 10px;
}

.js-panel-cart .mini-drawer-item-remove:hover,
.js-panel-cart .mini-drawer-item-remove:focus-visible,
.js-panel-wishlist .mini-drawer-item-remove:hover,
.js-panel-wishlist .mini-drawer-item-remove:focus-visible {
	color: color-mix(in srgb, var(--primary-color, #717fe0) 90%, #111827);
	background: color-mix(in srgb, var(--primary-color, #717fe0) 16%, #ffffff);
	border-color: color-mix(in srgb, var(--primary-color, #717fe0) 34%, #e5e7eb);
	outline: none;
}

.mini-drawer-item-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.mini-drawer-item-bottom--wishlist {
	justify-content: space-between;
}

.mini-drawer-item-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: 0;
	border-radius: 10px;
	background: var(--primary-color, #717fe0);
	color: var(--on-primary, #fff);
	font-size: 18px;
	cursor: pointer;
	flex-shrink: 0;
	text-decoration: none;
	transition: filter 0.15s ease, transform 0.15s ease, opacity 0.15s ease;
	box-shadow: 0 6px 16px color-mix(in srgb, var(--primary-color, #717fe0) 30%, transparent);
}

.mini-drawer-item-action--link {
	background: #f3f4f6;
	color: #4b5563;
	box-shadow: none;
}

.mini-drawer-item-action--link:hover {
	color: var(--primary-color, #717fe0);
	background: #eef2ff;
}

.mini-drawer-item-action--cart:hover:not(:disabled) {
	filter: brightness(1.05);
	transform: translateY(-1px);
}

.mini-drawer-item-action--disabled,
.mini-drawer-item-action:disabled {
	opacity: 0.45;
	cursor: not-allowed;
	box-shadow: none;
	transform: none;
}

.account-store-card__view--disabled,
.account-store-card__view:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	box-shadow: none;
	transform: none;
	filter: none;
}

.mini-drawer-item-action.is-loading {
	opacity: 0.65;
	pointer-events: none;
}

.mini-drawer-item-price {
	text-align: right;
	flex-shrink: 0;
}

.mini-cart-qty-ctrl .wrap-num-produce {
	width: 96px;
	height: 32px;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	overflow: hidden;
	background: #f9fafb;
}

.mini-cart-qty-ctrl .btn-num-produce-down,
.mini-cart-qty-ctrl .btn-num-produce-up {
	width: 28px;
	color: #6b7280;
	cursor: pointer;
}

.mini-cart-qty-ctrl .num-produce {
	width: calc(100% - 56px);
	font-size: 12px;
	font-weight: 600;
	color: #111827;
	background: transparent;
}

.js-panel-cart .mini-drawer-item-bottom {
	padding-top: 8px;
	border-top: 1px solid #eef0f4;
}

.js-panel-cart .mini-cart-qty-ctrl .wrap-num-produce {
	width: 118px !important;
	max-width: 100%;
	height: 36px !important;
}

.js-panel-cart .mini-cart-qty-ctrl .checkout-qty-input {
	width: auto !important;
	min-width: 0 !important;
	flex: 1 1 auto !important;
}

.mini-drawer-footer {
	flex-shrink: 0;
	margin-top: auto;
	padding: 14px 14px calc(14px + env(safe-area-inset-bottom, 0px));
	border-top: 1px solid #e9ecf3;
	background: #f6f7fb;
}

@media (min-width: 992px) {
	.js-panel-cart .mini-drawer-footer,
	.js-panel-wishlist .mini-drawer-footer {
		padding-bottom: calc(18px + env(safe-area-inset-bottom, 0px));
	}
}

/* Header cart / wishlist icon pulse on add */
@keyframes headerIconPulse {
	0% {
		transform: scale(1);
	}
	35% {
		transform: scale(1.18);
	}
	65% {
		transform: scale(0.95);
	}
	100% {
		transform: scale(1);
	}
}

.js-show-cart.header-icon-pulse i,
.js-show-wishlist.header-icon-pulse i,
#cart-icon-badge.header-icon-pulse i,
#wishlist-icon-badge.header-icon-pulse i,
#wishlist-icon-badge-mobile.header-icon-pulse i {
	animation: headerIconPulse 0.55s ease;
}


.js-panel-wishlist .wishlist-panel-shell {
	flex: 1 1 auto;
	min-height: 0;
	display: flex;
	flex-direction: column;
	width: 100%;
}

/* Drawer title standard (cart + wishlist) */
.header-drawer-panel {
	background: #fff;
}

.header-drawer-title {
	width: 100%;
	flex-shrink: 0;
	margin: 0 !important;
	padding-top: 24px !important;
	padding-bottom: 16px !important;
	border-bottom: 1px solid #e9ecf3;
	background: #fff;
}

.js-panel-cart .header-drawer-title,
.js-panel-wishlist .header-drawer-title,
.js-panel-contact .header-drawer-title {
	margin: 0 !important;
}

/* Normalize legacy cart header spacing to match wishlist */
.js-panel-cart .header-cart-title,
.js-panel-wishlist .wishlist-header,
.js-panel-contact .header-cart-title,
.js-panel-contact .contact-us-drawer__head {
	width: 100% !important;
	max-width: 100% !important;
	height: auto !important;
	min-height: 0 !important;
}

.js-panel-cart .header-cart-title,
.js-panel-wishlist .wishlist-header {
	align-items: center;
}

.header-drawer-title-text {
	display: inline-flex;
	align-items: center;
	font-weight: 700;
}

.header-drawer-title-icon {
	color: var(--primary-color, #d4a017);
	font-size: 26px;
	line-height: 1;
}

/* Theme adds bottom spacer to .header-cart; drawer footers handle layout */
.js-panel-wishlist .header-cart::after,
.js-panel-cart .header-cart::after,
.js-panel-contact .header-cart::after,
.js-panel-account .header-account::after {
	display: none;
	content: none;
	height: 0;
	min-height: 0;
}

/* Header slide-out drawers: depth aligned with main cart cards */
.js-panel-cart .header-cart,
.js-panel-wishlist .header-cart,
.js-panel-contact .header-cart,
.js-panel-account .header-account {
	box-shadow: -8px 0 32px rgba(17, 24, 39, 0.1);
	height: 100dvh !important;
	max-height: 100dvh !important;
}

@media (max-width: 767px) {
	/* Mobil drawer: header altından sticky bar üstüne, transform ile akıcı açılış */
	.wrap-header-cart.js-panel-cart,
	.wrap-header-cart.js-panel-wishlist,
	.wrap-header-cart.js-panel-contact,
	.wrap-header-account.js-panel-account {
		-webkit-transition: background-color 0.26s ease, visibility 0s linear 0.26s;
		-o-transition: background-color 0.26s ease, visibility 0s linear 0.26s;
		transition: background-color 0.26s ease, visibility 0s linear 0.26s;
	}

	.wrap-header-cart.js-panel-cart.show-header-cart,
	.wrap-header-cart.js-panel-wishlist.show-header-wishlist,
	.wrap-header-cart.js-panel-contact.show-header-cart,
	.wrap-header-account.js-panel-account.show-header-account {
		-webkit-transition: background-color 0.26s ease, visibility 0s;
		-o-transition: background-color 0.26s ease, visibility 0s;
		transition: background-color 0.26s ease, visibility 0s;
	}

	.js-panel-cart .header-cart.mini-drawer-panel,
	.js-panel-wishlist .header-cart.mini-drawer-panel,
	.js-panel-contact .header-cart.mini-drawer-panel,
	.js-panel-account .header-account.mini-drawer-panel {
		left: 0;
		right: 0 !important;
		width: 100%;
		max-width: 100%;
		padding-left: 0 !important;
		padding-right: 0 !important;
		top: 0;
		bottom: var(--drawer-bottom-inset, 0px);
		height: auto !important;
		max-height: none !important;
		border-radius: 0;
		z-index: 1;
		transform: translate3d(0, 100%, 0);
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
		will-change: transform;
		-webkit-transition: -webkit-transform 0.32s cubic-bezier(0.32, 0.72, 0, 1);
		-o-transition: transform 0.32s cubic-bezier(0.32, 0.72, 0, 1);
		transition: transform 0.32s cubic-bezier(0.32, 0.72, 0, 1);
	}

	.show-header-cart .header-cart.mini-drawer-panel,
	.show-header-wishlist .header-cart.mini-drawer-panel,
	.wrap-header-account.show-header-account .header-account.mini-drawer-panel {
		transform: translate3d(0, 0, 0);
	}

	body.has-cart-sticky-bar.cart-drawer-open,
	body.has-cart-sticky-bar.wishlist-drawer-open,
	body.has-cart-sticky-bar.account-drawer-open {
		--drawer-bottom-inset: var(--cart-sticky-bar-reserve, 7.75rem);
	}

	body.contact-drawer-open .js-panel-contact .header-cart.mini-drawer-panel {
		bottom: 0 !important;
		top: 0 !important;
		height: 100dvh !important;
		max-height: 100dvh !important;
		border-radius: 0;
	}

	body.contact-drawer-open .wrap-header-cart.js-panel-contact.show-header-cart {
		background-color: rgba(15, 23, 42, 0.58);
	}

	.js-panel-cart .mini-drawer-title,
	.js-panel-wishlist .mini-drawer-title,
	.js-panel-contact .mini-drawer-title,
	.js-panel-account .account-drawer-title {
		padding-top: calc(12px + env(safe-area-inset-top, 0px)) !important;
		padding-bottom: 10px !important;
	}

	/* Mobilde sayfa altı sticky bar checkout kullanılır; drawer içi CTA gizli */
	.js-panel-cart .mini-drawer-footer,
	.js-panel-wishlist .mini-drawer-footer {
		display: none !important;
	}

	.js-panel-cart .mini-drawer-scroll,
	.js-panel-wishlist .mini-drawer-scroll,
	.js-panel-contact .mini-drawer-scroll {
		padding-bottom: 16px;
	}

	body.has-cart-sticky-bar.cart-drawer-open .js-panel-cart .mini-drawer-scroll,
	body.has-cart-sticky-bar.wishlist-drawer-open .js-panel-wishlist .mini-drawer-scroll {
		padding-bottom: calc(var(--cart-sticky-bar-reserve, 7.75rem) + 16px);
	}


	/* Scroll lock: scroll-lock.js (ecom-scroll-locked) — body overflow:hidden scroll sıfırlar */

	@media (prefers-reduced-motion: reduce) {
		.wrap-header-cart.js-panel-cart,
		.wrap-header-cart.js-panel-wishlist,
		.wrap-header-account.js-panel-account {
			-webkit-transition: none;
			-o-transition: none;
			transition: none;
		}

		.js-panel-cart .header-cart.mini-drawer-panel,
		.js-panel-wishlist .header-cart.mini-drawer-panel,
		.js-panel-account .header-account.mini-drawer-panel {
			-webkit-transition: none;
			-o-transition: none;
			transition: none;
			transform: none;
		}

		.show-header-cart .header-cart.mini-drawer-panel,
		.show-header-wishlist .header-cart.mini-drawer-panel,
		.wrap-header-account.show-header-account .header-account.mini-drawer-panel {
			transform: none;
		}
	}
}

.wrap-header-account .header-account {
	box-shadow: -8px 0 32px rgba(17, 24, 39, 0.1);
}

/* Chrome, Safari, Edge, Opera - Input oklarını gizle */
.num-produce::-webkit-outer-spin-button,
.num-produce::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/*//////////////////////////////////////////////////////////////////
[ Header Wishlist ]*/

.wrap-header-wishlist {
	position: fixed;
	z-index: 1100;
	width: 100%;
	height: 100vh;
	top: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.0);
	visibility: hidden;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
}

.show-header-wishlist {
	visibility: visible;
	pointer-events: auto;
	background-color: rgba(0, 0, 0, 0.6);
}

.show-header-wishlist .header-cart {
	right: 0;
}

.js-addwish-detail.active i,
.js-addwish-b2.active i,
.js-addwish-b2.is-active i {
	color: var(--primary-color);
}

.js-addwish-detail:hover,
.js-addwish-b2:hover {
	text-decoration: none;
}

/* Product card quick-add-to-cart modal — premium */
.card-quick-cart-modal {
	position: fixed;
	inset: 0;
	z-index: 1200;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 0;
	background: transparent;
	visibility: hidden;
	pointer-events: none;
	isolation: isolate;
}

@media (min-width: 576px) {
	.card-quick-cart-modal {
		align-items: center;
		padding: 1.25rem;
	}
}

.card-quick-cart-modal.is-open {
	visibility: visible;
	pointer-events: auto;
}

.card-quick-cart-modal__backdrop {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: rgba(15, 23, 42, 0.36);
	backdrop-filter: blur(16px) saturate(145%);
	-webkit-backdrop-filter: blur(16px) saturate(145%);
	opacity: 0;
	transition: opacity 0.2s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: opacity;
}

.card-quick-cart-modal.is-open .card-quick-cart-modal__backdrop {
	opacity: 1;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
	.card-quick-cart-modal__backdrop {
		background: rgba(15, 23, 42, 0.58);
	}
}

.card-quick-cart-modal__panel {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 440px;
	max-height: min(90vh, 620px);
	overflow: auto;
	background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
	border: 1px solid rgba(15, 23, 42, 0.06);
	border-radius: 20px 20px 0 0;
	padding: 0 1.35rem 1.35rem;
	box-shadow:
		0 -8px 32px rgba(15, 23, 42, 0.08),
		0 24px 64px rgba(15, 23, 42, 0.16);
	transform: translateY(18px) scale(0.98);
	transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (min-width: 576px) {
	.card-quick-cart-modal__panel {
		border-radius: 20px;
		padding: 0 1.5rem 1.5rem;
	}
}

.card-quick-cart-modal.is-open .card-quick-cart-modal__panel {
	transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
	.card-quick-cart-modal__backdrop,
	.card-quick-cart-modal__panel {
		transition: none;
	}

	.card-quick-cart-modal__backdrop {
		opacity: 1;
	}

	.card-quick-cart-modal__panel {
		transform: none;
	}
}

.card-quick-cart-modal__accent {
	height: 4px;
	margin: 0 -1.35rem 1.15rem;
	border-radius: 20px 20px 0 0;
	background: linear-gradient(
		90deg,
		color-mix(in srgb, var(--primary-color, #717fe0) 70%, #ffffff),
		var(--primary-color, #717fe0)
	);
}

@media (min-width: 576px) {
	.card-quick-cart-modal__accent {
		margin: 0 -1.5rem 1.25rem;
	}
}

.card-quick-cart-modal__close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	border: 0;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.05);
	font-size: 1.15rem;
	color: #64748b;
	cursor: pointer;
	line-height: 1;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.card-quick-cart-modal__close:hover,
.card-quick-cart-modal__close:focus {
	outline: none;
	background: rgba(15, 23, 42, 0.08);
	color: #0f172a;
	transform: scale(1.04);
}

.card-quick-cart-modal__header {
	padding-top: 0.35rem;
	padding-right: 2.5rem;
	margin-bottom: 1rem;
}

.card-quick-cart-modal__title {
	font-family: var(--accent-font, var(--main-font));
	font-size: 1.15rem;
	font-weight: 600;
	line-height: 1.35;
	color: #0f172a;
	margin: 0 0 0.65rem;
	letter-spacing: -0.01em;
}

.card-quick-cart-modal__price {
	min-height: 1.75rem;
}

.card-quick-cart-modal__price-value {
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.card-quick-cart-modal__price .ecom-price__old {
	font-size: 0.92rem;
	opacity: 0.72;
	margin-right: 0.45rem;
}

.card-quick-cart-modal__price .ecom-price__current,
.card-quick-cart-modal__price .ecom-price:not(.ecom-price--discounted) {
	color: var(--primary-color, #717fe0);
}

.card-quick-cart-modal__body {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding: 1rem 0 0.25rem;
	border-top: 1px solid rgba(15, 23, 42, 0.07);
}

.card-quick-cart-option-row {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

.card-quick-cart-option-label {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #64748b;
}

.card-quick-cart-modal__footer {
	padding-top: 0.85rem;
}

.card-quick-cart-modal__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	width: 100%;
	min-height: 3rem;
	margin-top: 0;
	padding: 0.75rem 1.25rem;
	border: 0;
	border-radius: 999px;
	background: var(--primary-color, #717fe0);
	color: var(--on-primary, #ffffff);
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	cursor: pointer;
	box-shadow:
		0 10px 24px color-mix(in srgb, var(--primary-color, #717fe0) 28%, transparent),
		0 2px 6px rgba(15, 23, 42, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.card-quick-cart-modal__submit i {
	font-size: 1.15rem;
	line-height: 1;
}

.card-quick-cart-modal__submit:hover:not(:disabled) {
	transform: translateY(-1px);
	box-shadow:
		0 14px 28px color-mix(in srgb, var(--primary-color, #717fe0) 34%, transparent),
		0 4px 10px rgba(15, 23, 42, 0.1);
}

.card-quick-cart-modal__submit:active:not(:disabled) {
	transform: translateY(0);
}

.card-quick-cart-modal__submit:disabled {
	opacity: 0.42;
	cursor: not-allowed;
	box-shadow: none;
}

.card-quick-cart-option-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
}

.card-quick-cart-modal .card-quick-cart-variant-btn {
	-webkit-appearance: none;
	appearance: none;
	min-width: 3.25rem;
	border: 1.5px solid #e8ebf0;
	border-radius: 999px;
	background: #fff;
	color: #475569;
	padding: 0.55rem 1.05rem;
	min-height: 2.5rem;
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
	transition:
		border-color 0.2s ease,
		background 0.2s ease,
		color 0.2s ease,
		box-shadow 0.2s ease,
		transform 0.15s ease;
}

.card-quick-cart-modal .card-quick-cart-variant-btn:hover,
.card-quick-cart-modal .card-quick-cart-variant-btn:focus {
	outline: none;
	border-color: color-mix(in srgb, var(--primary-color) 30%, #dfe3ee);
	color: color-mix(in srgb, var(--primary-color) 82%, #1e293b);
	background: #fff;
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.card-quick-cart-modal .card-quick-cart-variant-btn.is-active {
	border-color: var(--primary-color, #717fe0);
	background: color-mix(in srgb, var(--primary-color, #717fe0) 92%, #ffffff);
	color: var(--on-primary, #ffffff);
	box-shadow: 0 6px 16px color-mix(in srgb, var(--primary-color, #717fe0) 32%, transparent);
	transform: translateY(-1px);
}

html.ecom-scroll-locked {
	overflow: hidden !important;
	height: 100%;
	background-color: transparent;
}

html.ecom-scroll-locked body {
	overflow: visible !important;
}

.sec-produce-detail .flex-m.bor9 {
	border-right: none;
	padding-right: 0 !important;
	margin-right: 0 !important;
}

.header-wishlist-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #888;
    font-family: Poppins-Regular;
    font-size: 15px;
}

.header-wishlist-empty i {
    font-size: 40px;
    margin-bottom: 15px;
    color: #ccc;
}

/*------------------------------------------------------------------
[ Cookie consent — tema uyumlu sağ alt panel ]
------------------------------------------------------------------*/
.cookie-consent-panel {
	position: fixed;
	right: max(16px, env(safe-area-inset-right));
	bottom: max(16px, env(safe-area-inset-bottom));
	left: auto;
	z-index: 12050;
	max-width: min(420px, calc(100vw - 32px));
	pointer-events: none;
	opacity: 0;
	transform: translateY(18px) scale(0.98);
	transition: opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1), transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.cookie-consent-panel.is-visible {
	opacity: 1;
	transform: translateY(0) scale(1);
	pointer-events: auto;
}

.cookie-consent-panel__surface {
	position: relative;
	background: #fff;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 22px 50px rgba(17, 24, 39, 0.14), 0 4px 14px rgba(17, 24, 39, 0.06);
	border: 1px solid color-mix(in srgb, var(--primary-color, #717fe0) 14%, #e8eaef);
}

.cookie-consent-panel__accent {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(180deg, var(--primary-color, #717fe0), color-mix(in srgb, var(--primary-color, #717fe0) 55%, #1a1a1a));
}

.cookie-consent-panel__body {
	display: flex;
	gap: 14px;
	padding: 1.15rem 1.15rem 0.85rem 1.35rem;
	align-items: flex-start;
}

.cookie-consent-panel__icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: color-mix(in srgb, var(--primary-color, #717fe0) 12%, #fff);
	color: color-mix(in srgb, var(--primary-color, #717fe0) 88%, #111);
	font-size: 22px;
	line-height: 1;
}

.cookie-consent-panel__title {
	font-family: var(--main-font, Poppins-Medium), sans-serif;
	font-size: 1rem;
	font-weight: 600;
	color: #1a1d24;
	margin: 0 0 0.4rem;
	letter-spacing: -0.02em;
	line-height: 1.3;
}

.cookie-consent-panel__message {
	font-family: var(--main-font, Poppins-Regular), sans-serif;
	font-size: 13px;
	line-height: 1.55;
	color: #5c6370;
	margin: 0;
}

.cookie-consent-panel__actions {
	padding: 0 1.15rem 1.15rem 1.35rem;
	display: flex;
	justify-content: flex-end;
}

.cookie-consent-panel__btn {
	font-family: var(--main-font, Poppins-Medium), sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.02em;
	border-radius: 999px;
	padding: 0.65rem 1.25rem;
	border: none;
	cursor: pointer;
	transition: filter 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.cookie-consent-panel__btn:active {
	transform: scale(0.98);
}

.cookie-consent-panel__btn--primary {
	background: var(--primary-color, #717fe0);
	color: var(--on-primary, #111) !important;
	box-shadow: 0 8px 20px color-mix(in srgb, var(--primary-color, #717fe0) 32%, transparent);
}

.cookie-consent-panel__btn--primary:hover {
	filter: brightness(1.06);
}

@media (max-width: 575px) {
	.cookie-consent-panel {
		right: 12px;
		left: 12px;
		max-width: none;
	}
}

/* Landing page */
body.landing-page .landing-page-section {
	padding-top: 48px;
	padding-bottom: 56px;
}

.landing-page-hero {
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 32px;
	padding-bottom: 36px;
}

.landing-page-hero__title {
	font-size: clamp(1.35rem, 4vw, 2rem);
	line-height: 1.35;
	word-break: break-word;
	margin: 0 0 12px;
}

.landing-page-hero__desc {
	font-size: clamp(0.9rem, 2.5vw, 1rem);
	line-height: 1.6;
	word-break: break-word;
	margin: 0;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

.landing-page-produce-grid {
	margin-top: 16px;
}

@media (min-width: 768px) {
	body.landing-page .landing-page-section {
		padding-top: 64px;
	}

	.landing-page-hero {
		padding-top: 40px;
		padding-bottom: 44px;
	}
}

@media (max-width: 575px) {
	body.landing-page .landing-page-section {
		padding-top: 32px;
		padding-bottom: 40px;
	}

	.landing-page-hero {
		padding-top: 24px;
		padding-bottom: 20px;
	}

	.landing-page-produce-grid {
		margin-top: 12px;
	}

	.landing-page-produce-grid > [class*="col-"] {
		padding-bottom: 20px !important;
	}
}

.top-bar-announcement-rotator__link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.top-bar-announcement-rotator__link:hover .top-bar-announcement-rotator__text {
	text-decoration: underline;
}

/*//////////////////////////////////////////////////////////////////
[ Homepage blog section — editorial ]*/
.home-blog-section {
	padding-top: 4.75rem;
	padding-bottom: 4.25rem;
	background: linear-gradient(180deg, #fafbfc 0%, #ffffff 42%, #ffffff 100%);
}

.home-blog-section__header {
	max-width: 640px;
	margin: 0 auto 2.5rem;
	text-align: center;
	min-width: 0;
	padding-left: 0.25rem;
	padding-right: 0.25rem;
}

.home-blog-section__eyebrow {
	margin: 0 0 0.65rem;
	font-family: var(--main-font);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--primary-color, #717fe0);
}

.home-blog-section__title {
	margin: 0 0 0.75rem;
	font-family: var(--accent-font);
	font-weight: 700;
	letter-spacing: 0.2px;
	max-width: 100%;
	overflow-wrap: anywhere;
	word-break: break-word;
	hyphens: auto;
}

.home-blog-section__subtitle {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.65;
	max-width: 520px;
	margin-left: auto;
	margin-right: auto;
}

.home-blog-grid {
	margin-left: -8px;
	margin-right: -8px;
}

.home-blog-grid__col {
	padding-left: 8px;
	padding-right: 8px;
}

.home-blog-card {
	height: 100%;
	border-radius: 14px;
	overflow: hidden;
	background: #ffffff;
	border: 1px solid #ececec;
	box-shadow: 0 1px 4px rgba(15, 23, 42, 0.06);
	transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.home-blog-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
	color: inherit;
}

.home-blog-card__link:hover,
.home-blog-card__link:focus-visible {
	text-decoration: none;
	color: inherit;
}

.home-blog-card:hover,
.home-blog-card:focus-within {
	border-color: color-mix(in srgb, var(--primary-color, #717fe0) 22%, #ececec);
	box-shadow: 0 4px 14px rgba(15, 23, 42, 0.1);
	transform: translateY(-2px);
}

.home-blog-card__media {
	position: relative;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: #eef0f4;
}

.home-blog-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.home-blog-card__scrim {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(180deg,
			rgba(0, 0, 0, 0) 55%,
			rgba(0, 0, 0, 0.28) 100%);
	opacity: 0.9;
	transition: opacity 0.3s ease;
}

.home-blog-card__body {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	gap: 0.35rem;
	padding: 0.875rem 0.8125rem 0.9375rem;
}

.home-blog-card__title {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 0;
	min-height: calc(1.35em * 2);
	font-family: var(--main-font);
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.35;
	color: #1f2937;
	transition: color 0.25s ease;
}

.home-blog-card__excerpt {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 0;
	font-size: 0.8125rem;
	line-height: 1.45;
	color: #6b7280;
}

.home-blog-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	margin-top: auto;
	padding-top: 0.35rem;
	font-family: var(--main-font);
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--primary-color, #717fe0);
	transition: gap 0.25s ease;
}

.home-blog-card__cta .fa {
	font-size: 0.8rem;
	transition: transform 0.25s ease;
}

.home-blog-card:hover .home-blog-card__media img,
.home-blog-card:focus-within .home-blog-card__media img {
	transform: scale(1.03);
}

.home-blog-card:hover .home-blog-card__title,
.home-blog-card:focus-within .home-blog-card__title {
	color: var(--primary-color, #717fe0);
}

.home-blog-card:hover .home-blog-card__cta,
.home-blog-card:focus-within .home-blog-card__cta {
	gap: 0.5rem;
}

.home-blog-card:hover .home-blog-card__cta .fa,
.home-blog-card:focus-within .home-blog-card__cta .fa {
	transform: translateX(2px);
}

@media (min-width: 992px) {
	.home-blog-grid {
		margin-left: -12px;
		margin-right: -12px;
	}

	.home-blog-grid__col {
		padding-left: 12px;
		padding-right: 12px;
	}

	.home-blog-card__title {
		font-size: 0.875rem;
	}

	.home-blog-card__body {
		padding: 0.75rem 0.6875rem 0.8125rem;
	}
}

@media (max-width: 767px) {
	.home-blog-section {
		padding-top: 3.25rem;
		padding-bottom: 3rem;
	}

	.home-blog-section__header {
		margin-bottom: 1.75rem;
	}

	.home-blog-card__title {
		font-size: 0.875rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.home-blog-card,
	.home-blog-card__media img,
	.home-blog-card__cta,
	.home-blog-card__cta .fa,
	.home-blog-card__title {
		transition: none;
	}

	.home-blog-card:hover,
	.home-blog-card:focus-within {
		transform: none;
	}

	.home-blog-card:hover .home-blog-card__media img,
	.home-blog-card:focus-within .home-blog-card__media img {
		transform: none;
	}
}

/* Legal page modal */
.legal-page-modal {
	position: fixed;
	inset: 0;
	z-index: 12050;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px 16px;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.16s ease, visibility 0s linear 0.16s;
}

.legal-page-modal.is-fetching,
.legal-page-modal.is-open {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
	transition: opacity 0.14s ease, visibility 0s;
}

.legal-page-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(17, 24, 39, 0.58);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

.legal-page-modal__fetching {
	position: relative;
	z-index: 2;
	display: none;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.legal-page-modal.is-fetching .legal-page-modal__fetching {
	display: flex;
}

.legal-page-modal__fetching-card {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.85rem 1.1rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(255, 255, 255, 0.65);
	box-shadow: 0 14px 36px rgba(15, 23, 42, 0.18);
	color: #4b5563;
	font-family: var(--main-font);
	font-size: 0.8125rem;
	font-weight: 600;
}

.legal-page-modal__fetching-spinner {
	width: 1rem;
	height: 1rem;
	border-radius: 999px;
	border: 2px solid color-mix(in srgb, var(--primary-color, #717fe0) 18%, #e5e7eb);
	border-top-color: var(--primary-color, #717fe0);
	animation: legal-page-modal-spin 0.7s linear infinite;
}

@keyframes legal-page-modal-spin {
	to {
		transform: rotate(360deg);
	}
}

.legal-page-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(920px, 100%);
	max-height: min(88vh, 900px);
	display: none;
	flex-direction: column;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 24px 64px rgba(15, 23, 42, 0.28);
	overflow: hidden;
	outline: none;
}

.legal-page-modal.is-open .legal-page-modal__dialog {
	display: flex;
	animation: legal-page-modal-dialog-in 0.24s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes legal-page-modal-dialog-in {
	from {
		opacity: 0;
		transform: translateY(14px) scale(0.98);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.legal-page-modal__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 22px;
	border-bottom: 1px solid #ececec;
	background: linear-gradient(180deg, #faf8f6 0%, #ffffff 100%);
}

.legal-page-modal__title {
	margin: 0;
	font-size: 18px;
	line-height: 1.35;
	font-weight: 600;
	color: #222;
}

.legal-page-modal__close {
	border: 0;
	background: transparent;
	color: #666;
	font-size: 22px;
	line-height: 1;
	padding: 4px;
	cursor: pointer;
}

.legal-page-modal__close:hover {
	color: #111;
}

.legal-page-modal__body {
	position: relative;
	flex: 1;
	min-height: 200px;
	overflow: auto;
	padding: 22px 24px 28px;
}

.legal-page-modal[data-state="content"] .legal-page-modal__content {
	display: block;
	animation: legal-page-modal-content-in 0.2s ease both;
}

.legal-page-modal[data-state="error"] .legal-page-modal__error {
	display: block;
}

.legal-page-modal__content {
	display: none;
}

@keyframes legal-page-modal-content-in {
	from {
		opacity: 0;
		transform: translateY(6px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.legal-page-modal__content h2,
.legal-page-modal__content h3 {
	margin-top: 1.2em;
	margin-bottom: 0.6em;
}

.legal-page-modal__content p,
.legal-page-modal__content li {
	line-height: 1.65;
}

.legal-page-modal__error {
	display: none;
	margin: 0;
	padding: 24px 0;
	text-align: center;
	color: #b45309;
	font-size: 0.875rem;
}

.js-legal-page-link {
	color: var(--primary-color, #717fe0) !important;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.js-legal-page-link:hover,
.js-legal-page-link:focus-visible {
	color: color-mix(in srgb, var(--primary-color, #717fe0) 78%, #000000) !important;
	text-decoration: underline;
}

.header-account-check .js-legal-page-link {
	margin-left: 4px;
	white-space: nowrap;
}

/* Account drawer — login / register */
.js-panel-account .header-account.account-drawer-panel {
	display: flex;
	flex-direction: column;
	padding: 0 !important;
	overflow: hidden;
}

.account-drawer-body {
	flex: 1 1 auto;
	min-height: 0;
	display: flex;
	flex-direction: column;
	width: 100%;
}

.js-panel-account .header-account-content {
	flex: 1 1 auto;
	min-height: 0;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding: 16px;
	box-sizing: border-box;
	-webkit-overflow-scrolling: touch;
}

.account-drawer-shell {
	width: 100%;
}

.account-drawer-panel-section--hidden {
	display: none !important;
}

.account-drawer-error {
	display: none;
	margin-bottom: 12px;
	padding: 10px 12px;
	border-radius: 10px;
	font-size: 13px;
	font-weight: 600;
	color: #b42318;
	background: #fef3f2;
	border: 1px solid #fecdca;
}

.js-panel-account .header-account-field {
	border-radius: 12px !important;
	border-color: #e2e8f0 !important;
	background: #fff;
}

.js-panel-account .header-account-field > input {
	border-radius: 11px;
	min-height: 48px;
	font-size: 15px;
}

.js-panel-account .header-account-field:focus-within {
	border-color: color-mix(in srgb, var(--primary-color, #717fe0) 45%, #e2e8f0) !important;
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary-color, #717fe0) 12%, transparent);
}

.header-account-submit {
	border-radius: 999px !important;
	min-height: 50px;
	width: 100%;
	margin-top: 4px;
	font-weight: 600;
	letter-spacing: 0.01em;
	box-shadow: 0 8px 22px color-mix(in srgb, var(--primary-color, #717fe0) 24%, transparent);
}

.header-account-check {
	display: flex;
	gap: 10px;
	font-size: 13px;
	color: #334155;
	line-height: 1.5;
	align-items: flex-start;
}

.header-account-check input[type="checkbox"] {
	margin-top: 3px;
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	accent-color: var(--primary-color, #717fe0);
}

.account-drawer-footer {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
	padding: 14px 16px calc(14px + env(safe-area-inset-bottom, 0px));
	border-top: 1px solid #e9ecf3;
	background: #fff;
	box-shadow: 0 -10px 28px rgba(15, 23, 42, 0.07);
}

.account-drawer-footer__hint {
	margin: 0;
	font-size: 13px;
	line-height: 1.45;
	color: #64748b;
	flex: 1;
	min-width: 0;
}

.account-drawer-footer__action {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 18px;
	border: 1.5px solid color-mix(in srgb, var(--primary-color, #717fe0) 50%, #e5e7eb);
	border-radius: 999px;
	background: color-mix(in srgb, var(--primary-color, #717fe0) 9%, #ffffff);
	color: var(--primary-color, #717fe0);
	font-family: var(--main-font);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	cursor: pointer;
	transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.account-drawer-footer__action:hover,
.account-drawer-footer__action:focus-visible {
	background: color-mix(in srgb, var(--primary-color, #717fe0) 14%, #ffffff);
	border-color: var(--primary-color, #717fe0);
	outline: none;
}

.js-panel-account .account-drawer-title {
	position: relative;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	margin: 0 !important;
	padding: 18px 14px 14px 16px !important;
	height: auto !important;
	min-height: 0 !important;
	border-bottom: 1px solid #e9ecf3;
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.js-panel-account .account-drawer-title .mini-drawer-close {
	flex-shrink: 0;
}

.js-panel-account .account-drawer-title .header-drawer-title-text {
	flex: 1;
	min-width: 0;
	justify-content: center;
	padding-right: 40px;
}

.js-panel-account .account-drawer-title .mini-drawer-title-label {
	font-size: 1.35rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #0f172a;
}

@media (min-width: 768px) {
	.js-panel-account .header-account.account-drawer-panel {
		width: min(420px, calc(100vw - 40px));
		max-width: 420px;
	}

	.js-panel-account .header-account-content {
		padding: 20px 24px 12px;
	}

	.js-panel-account .account-drawer-shell {
		background: #fff;
		border: 1px solid #e9ecf3;
		border-radius: 16px;
		padding: 20px;
		box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
	}

	.js-panel-account .account-drawer-title {
		padding: 26px 28px 20px !important;
	}

	.js-panel-account .account-drawer-title .mini-drawer-close {
		position: absolute;
		top: 20px;
		right: 20px;
		left: auto;
	}

	.js-panel-account .account-drawer-title .header-drawer-title-text {
		justify-content: flex-start;
		padding-right: 52px;
		padding-left: 0;
	}

	.js-panel-account .account-drawer-title .mini-drawer-title-label {
		font-size: 1.5rem;
	}

	.account-drawer-footer {
		padding: 16px 24px 24px;
	}
}

@media (max-width: 767px) {
	.js-panel-account .header-account.account-drawer-panel {
		background: #f6f7fb;
	}

	.js-panel-account .account-drawer-shell {
		background: #fff;
		border: 1px solid #e9ecf3;
		border-radius: 14px;
		padding: 16px;
		box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
	}

	.account-drawer-footer {
		margin-top: auto;
	}
}

@media (max-width: 767px) {
	.legal-page-modal {
		padding: 12px;
	}

	.legal-page-modal__dialog {
		max-height: 92vh;
		border-radius: 12px;
	}

	.legal-page-modal__body {
		padding: 16px 16px 20px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.legal-page-modal,
	.legal-page-modal.is-open .legal-page-modal__dialog,
	.legal-page-modal[data-state="content"] .legal-page-modal__content,
	.legal-page-modal__fetching-spinner {
		animation: none !important;
		transition: none !important;
	}
}