/* =========================================================
   TEMEL AYARLAR
   ========================================================= */

:root {
	--etg-pink: #a64b54;
	--etg-pink-dark: #8f3f47;
	--etg-pink-light: #fce8e5;
	--etg-cream: #fff9f6;
	--etg-text: #382f2d;
	--etg-muted: #756764;
	--etg-border: #f0e6e3;
	--etg-white: #ffffff;
	--etg-container: 1420px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	margin: 0;
	padding: 0;
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;
	background: var(--etg-white);
	color: var(--etg-text);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

.etg-static-picture {
	display: contents;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
select,
textarea {
	font: inherit;
}

button {
	cursor: pointer;
}

ul,
ol {
	margin: 0;
	padding: 0;
}

.etg-container {
	width: min(calc(100% - 48px), var(--etg-container));
	margin-right: auto;
	margin-left: auto;
}

/* =========================================================
   ERİŞİLEBİLİRLİK
   ========================================================= */

.screen-reader-text {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	clip-path: inset(50%) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.etg-skip-link:focus {
	position: fixed !important;
	z-index: 10000;
	top: 12px;
	left: 12px;
	width: auto !important;
	height: auto !important;
	margin: 0 !important;
	padding: 12px 18px !important;
	overflow: visible !important;
	clip: auto !important;
	clip-path: none !important;
	background: #ffffff;
	border: 2px solid #382f2d !important;
	border-radius: 8px;
	color: #382f2d;
	font-weight: 700;
}

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
	outline: 3px solid #8f3f47;
	outline-offset: 3px;
}

/* =========================================================
   HEADER
   ========================================================= */

.etg-site-header {
	position: relative;
	z-index: 1000;
	display: block;
	width: 100%;
	background: var(--etg-white);
}

/* =========================================================
   ÜST BİLGİ BANDI
   ========================================================= */

.etg-announcement-bar {
	display: block;
	width: 100%;
	background: linear-gradient(
		90deg,
		#f8cecc 0%,
		#fde8e5 50%,
		#f8cecc 100%
	);
	color: #71504d;
}

.etg-announcement-bar__inner {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: center;
	min-height: 36px;
}

.etg-announcement-bar__item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-width: 0;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.2;
	white-space: nowrap;
}

.etg-announcement-bar__item svg {
	display: block;
	flex: 0 0 auto;
	color: var(--etg-pink-dark);
}

/* =========================================================
   ANA HEADER
   ========================================================= */

.etg-main-header {
	display: block;
	width: 100%;
	background: var(--etg-white);
	border-bottom: 1px solid var(--etg-border);
}

.etg-main-header__inner {
	display: grid;
	grid-template-columns: 230px minmax(520px, 1fr) 310px;
	align-items: center;
	gap: 30px;
	min-height: 110px;
}

/* =========================================================
   LOGO
   ========================================================= */

.etg-main-header__branding {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	min-width: 0;
}

.etg-main-header__branding .custom-logo-link {
	display: inline-flex !important;
	align-items: center;
	justify-content: flex-start;
	max-width: 220px;
	text-decoration: none;
}

.etg-main-header__branding .custom-logo {
	display: block !important;
	width: auto !important;
	max-width: 210px !important;
	height: auto !important;
	max-height: 86px !important;
	object-fit: contain;
}

.etg-main-header__brand-name {
	display: inline-block;
	color: var(--etg-pink);
	font-size: 30px;
	font-weight: 700;
	text-decoration: none;
}

/* =========================================================
   MASAÜSTÜ MENÜ
   ========================================================= */

.etg-desktop-navigation {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-width: 0;
}

.etg-desktop-navigation__menu {
	display: flex !important;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	gap: 28px;
	width: auto;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

.etg-desktop-navigation__menu li {
	display: block;
	position: relative;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

.etg-desktop-navigation__menu li::marker {
	display: none;
	content: "";
}

.etg-desktop-navigation__menu a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0;
	color: #443735;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	white-space: nowrap;
	transition:
		color 0.2s ease,
		transform 0.2s ease;
}

.etg-desktop-navigation__menu a:hover,
.etg-desktop-navigation__menu a:focus-visible {
	color: var(--etg-pink);
	transform: translateY(-1px);
}

.etg-mega-menu__heading {
	display: flex;
	align-items: center;
}

.etg-mega-menu__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	min-width: 28px;
	height: 42px;
	padding: 0;
	background: transparent;
	border: 0;
	color: #443735;
	cursor: pointer;
}

.etg-mega-menu__toggle[aria-expanded="true"] span {
	transform: rotate(180deg);
}

.etg-mega-menu__panel {
	z-index: 30;
	min-width: 220px;
	padding: 16px;
	background: var(--etg-white);
	border: 1px solid var(--etg-border);
	border-radius: 12px;
	box-shadow: 0 16px 36px rgb(68 55 53 / 14%);
}

.etg-navigation-ready .etg-desktop-navigation .etg-mega-menu__panel {
	display: none;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
}

.etg-navigation-ready .etg-desktop-navigation .etg-mega-menu__item.is-open > .etg-mega-menu__panel {
	display: block;
}

.etg-mega-menu__panel ul {
	display: grid;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.etg-mega-menu__panel a {
	justify-content: flex-start;
	width: 100%;
	min-height: 38px;
	white-space: normal;
	overflow-wrap: anywhere;
}

/* =========================================================
   HEADER SAĞ ALAN
   ========================================================= */

.etg-main-header__right {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
	gap: 13px;
	width: 100%;
	min-width: 0;
}

/* =========================================================
   ARAMA
   ========================================================= */

.etg-header-search {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	height: 44px;
	overflow: visible;
	background: #fffafa;
	border: 1px solid #eadedb;
	border-radius: 999px;
	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease;
}

.etg-live-search {
	position: absolute;
	z-index: 100;
	top: calc(100% + 8px);
	right: 0;
	left: 0;
	overflow: hidden;
	padding: 8px;
	background: #fffdfd;
	border: 1px solid #f3dcdf;
	border-radius: 16px;
	box-shadow: 0 14px 35px rgba(113, 72, 74, 0.14);
}

.etg-live-search[hidden] {
	display: none;
}

.etg-live-search__results {
	max-height: min(42vh, 270px);
	overflow-y: auto;
	border-radius: 11px;
}

.etg-live-search__item {
	display: flex;
	gap: 9px;
	align-items: center;
	min-height: 34px;
	padding: 7px 9px;
	color: var(--etg-text);
	text-decoration: none;
}

.etg-live-search__item:last-child {
	border-bottom: 0;
}

.etg-live-search__item:hover,
.etg-live-search__item:focus-visible,
.etg-live-search__item.is-active {
	background: #fff5f4;
	outline: 0;
}

.etg-live-search__item-icon {
	position: relative;
	flex: 0 0 15px;
	width: 15px;
	height: 15px;
	border: 1.7px solid #9a8c8b;
	border-radius: 50%;
}

.etg-live-search__item-icon::after {
	position: absolute;
	right: -4px;
	bottom: -2px;
	width: 5px;
	height: 1.7px;
	background: #9a8c8b;
	transform: rotate(45deg);
	content: "";
}

.etg-live-search__content,
.etg-live-search__meta {
	display: flex;
	min-width: 0;
}

.etg-live-search__content {
	flex: 1;
	flex-direction: column;
	gap: 7px;
}

.etg-live-search__name {
	overflow: hidden;
	font-size: 12px;
	font-weight: 600;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.etg-live-search__meta {
	justify-content: space-between;
	gap: 10px;
	color: #765653;
	font-size: 12px;
}

.etg-live-search__stock.is-outofstock {
	color: #a33b3b;
}

.etg-live-search__message {
	margin: 0;
	padding: 18px;
	color: var(--etg-muted);
	font-size: 13px;
	text-align: center;
}

.etg-live-search__actions {
	display: grid;
	gap: 7px;
	margin-top: 9px;
	padding-top: 9px;
	border-top: 1px solid #f3e5e6;
}

.etg-live-search__action {
	display: flex;
	gap: 11px;
	align-items: center;
	width: 100%;
	min-height: 52px;
	padding: 8px 11px;
	background: #fff8f8;
	border: 1px solid #f5e5e6;
	border-radius: 10px;
	color: #443b3a;
	text-align: left;
}

.etg-live-search__action:hover,
.etg-live-search__action:focus-visible,
.etg-live-search__action.is-active {
	background: #fff0f1;
	border-color: #edc9cc;
}

.etg-live-search__action-icon {
	display: inline-flex;
	flex: 0 0 31px;
	align-items: center;
	justify-content: center;
	width: 31px;
	height: 31px;
	background: #fff;
	border: 1px solid #ead8d9;
	border-radius: 7px;
	color: #746968;
	font-size: 20px;
}

.etg-live-search__action strong,
.etg-live-search__action small {
	display: block;
}

.etg-live-search__action strong {
	font-size: 12px;
	line-height: 1.25;
}

.etg-live-search__action small {
	margin-top: 2px;
	color: #756a68;
	font-size: 10px;
}

.etg-header-search:focus-within {
	border-color: #dca6a3;
	box-shadow: 0 0 0 3px rgba(238, 133, 139, 0.12);
}

.etg-header-search__field {
	display: block;
	flex: 1 1 auto;
	width: 100%;
	min-width: 0;
	height: 42px;
	margin: 0;
	padding: 0 8px 0 18px;
	background: transparent;
	border: 0;
	border-radius: 0;
	outline: 0;
	color: var(--etg-text);
	font-size: 12px;
	box-shadow: none;
	appearance: none;
}

.etg-header-search__field::placeholder {
	color: #756764;
	opacity: 1;
}

.etg-header-search__field::-webkit-search-cancel-button {
	appearance: none;
}

.etg-header-search__clear {
	display: inline-flex;
	flex: 0 0 28px;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 50%;
	color: #9a8584;
	font-size: 21px;
	line-height: 1;
}

.etg-header-search__clear:hover,
.etg-header-search__clear:focus-visible {
	background: #fcebed;
	color: var(--etg-pink-dark);
}

.etg-header-search__clear[hidden] {
	display: none;
}

.etg-header-search__button {
	display: inline-flex;
	flex: 0 0 46px;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 42px;
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	color: #765653;
	box-shadow: none;
	appearance: none;
}

.etg-header-search__button:hover,
.etg-header-search__button:focus-visible {
	background: #fceeed;
	color: var(--etg-pink-dark);
}

/* =========================================================
   HEADER İKONLARI
   ========================================================= */

.etg-header-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 23px;
	padding-right: 8px;
}

.etg-header-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 28px;
	height: 28px;
	color: #9b625e;
	text-decoration: none;
	transition:
		color 0.2s ease,
		transform 0.2s ease;
}

.etg-header-action svg {
	display: block;
	width: 24px;
	height: 24px;
}

.etg-header-action:hover,
.etg-header-action:focus-visible {
	color: var(--etg-pink);
	transform: translateY(-1px);
}

.etg-header-action__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: -8px;
	right: -10px;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	background: var(--etg-pink);
	border: 2px solid var(--etg-white);
	border-radius: 999px;
	color: var(--etg-white);
	font-size: 9px;
	font-weight: 700;
	line-height: 1;
}

.etg-header-action--favorites .etg-header-action__count[hidden] {
	display: none;
}

.etg-favorite-toggle svg path,
.etg-header-action--favorites svg path {
	transition: fill 0.2s ease, stroke 0.2s ease;
}

.etg-favorite-toggle.is-favorite {
	background: #fceeed;
	color: var(--etg-pink-dark);
}

.etg-favorite-toggle.is-favorite svg path {
	fill: currentColor;
}

.etg-favorite-toggle:disabled {
	cursor: wait;
	opacity: 0.65;
}

.etg-single-product__favorite {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	margin: 0 0 18px;
	padding: 0;
	background: #fffafa;
	border: 1px solid #eadedb;
	border-radius: 50%;
	color: #9b625e;
}

.etg-single-product__favorite:hover,
.etg-single-product__favorite:focus-visible {
	border-color: #dca6a3;
	color: var(--etg-pink-dark);
}

.woocommerce-MyAccount-navigation-link--favoriler a::before {
	content: "♥";
}

.etg-account-favorites__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 24px;
	padding-bottom: 20px;
	border-bottom: 1px solid #efdfda;
}

.etg-account-favorites__eyebrow {
	display: block;
	margin-bottom: 5px;
	color: #a2474f;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.etg-account-favorites__header h2 {
	margin: 0 0 7px;
	color: #342b28;
	font-size: 28px;
	line-height: 1.2;
}

.etg-account-favorites__header p {
	max-width: 520px;
	margin: 0;
	color: #756965;
	font-size: 14px;
	line-height: 1.6;
}

.etg-account-favorites__count {
	flex: 0 0 auto;
	padding: 8px 12px;
	background: #fff0ee;
	border-radius: 999px;
	color: #963f48;
	font-size: 12px;
	font-weight: 800;
}

.etg-favorites-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.etg-favorite-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	background: #ffffff;
	border: 1px solid #eddbd6;
	border-radius: 18px;
	box-shadow: 0 9px 25px rgba(81, 57, 50, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.etg-favorite-card:hover,
.etg-favorite-card:focus-within {
	transform: translateY(-3px);
	box-shadow: 0 15px 32px rgba(81, 57, 50, 0.13);
}

.etg-favorite-card__media {
	position: relative;
	height: 250px;
	overflow: hidden;
	background: #fff8f5;
	border-bottom: 1px solid #eddbd6;
}

.etg-favorite-card__media > a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 18px;
	box-sizing: border-box;
}

.etg-favorite-card__image {
	display: block;
	width: 100% !important;
	height: 100% !important;
	margin: 0 !important;
	object-fit: contain;
	object-position: center;
}

.etg-favorite-card__badge {
	position: absolute;
	z-index: 2;
	top: 14px;
	left: 14px;
	padding: 6px 9px;
	background: #e87179;
	border-radius: 999px;
	color: #ffffff;
	font-size: 10px;
	font-weight: 800;
	line-height: 1;
}

.etg-favorite-card__badge--new {
	background: #52733e;
}

.etg-favorite-card__badge--popular {
	background: #d99227;
}

.etg-favorite-card__remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	z-index: 3;
	top: 12px;
	right: 12px;
	width: 40px;
	height: 40px;
	padding: 0;
	background: rgba(255, 255, 255, 0.96);
	border: 0;
	border-radius: 50%;
	color: #a2474f;
	box-shadow: 0 5px 15px rgba(81, 57, 50, 0.14);
	cursor: pointer;
	appearance: none;
}

.etg-favorite-card__remove svg {
	display: block;
	width: 21px;
	height: 21px;
}

.etg-favorite-card__remove.is-favorite,
.etg-favorite-card__remove:hover {
	background: #e87179;
	color: #ffffff;
}

.etg-favorite-card__remove:focus-visible {
	outline: 3px solid rgba(232, 113, 121, 0.3);
	outline-offset: 2px;
}

.etg-favorite-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 18px;
}

.etg-favorite-card__body h3 {
	margin: 0 0 9px;
	font-size: 16px;
	line-height: 1.4;
}

body.woocommerce-account
.woocommerce-MyAccount-content
.etg-favorite-card__body h3 a {
	color: #392f2c;
	text-decoration: none;
}

.etg-favorite-card__price {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-bottom: 10px;
	color: #392f2c;
	font-size: 17px;
	font-weight: 800;
}

.etg-favorite-card__price del {
	color: #9b8e8a;
	font-size: 12px;
	font-weight: 500;
}

.etg-favorite-card__price ins {
	color: #392f2c;
	text-decoration: none;
}

.etg-favorite-card__stock {
	margin-bottom: 18px;
	color: #567047;
	font-size: 12px;
	font-weight: 700;
}

.etg-favorite-card__stock.is-low {
	color: #a75c12;
}

.etg-favorite-card__stock.is-out {
	color: #a13f3f;
}

.etg-favorite-card__actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
}

body.woocommerce-account
.woocommerce-MyAccount-content
.etg-favorite-card__details {
	color: #963f48;
	font-size: 12px;
	font-weight: 800;
	text-decoration: none;
}

.etg-favorite-card__cart {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-height: 40px;
	padding: 0 15px !important;
	background: #e87179 !important;
	border: 0 !important;
	border-radius: 999px !important;
	color: #ffffff !important;
	font-size: 11px !important;
	font-weight: 800 !important;
	text-decoration: none !important;
}

.etg-favorite-card__cart:hover,
.etg-favorite-card__cart:focus-visible {
	background: #d65f68 !important;
	color: #ffffff !important;
}

.etg-account-favorites__empty {
	padding: 36px 20px;
	background: #fff8f5;
	border: 1px dashed #dfc6bf;
	border-radius: 16px;
	color: #756965;
	text-align: center;
}

.etg-account-favorites__empty span {
	display: block;
	margin-bottom: 8px;
	color: #d65f68;
	font-size: 36px;
}

.etg-account-favorites__empty p {
	margin: 0;
}

.etg-account-favorites .products {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media screen and (max-width: 600px) {
	.etg-account-favorites__header {
		display: block;
	}

	.etg-account-favorites__count {
		display: inline-flex;
		margin-top: 14px;
	}

	.etg-favorites-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.etg-account-favorites .products {
		grid-template-columns: minmax(0, 1fr);
	}

	.etg-favorite-card__media {
		height: 280px;
	}
}

/* =========================================================
   HAMBURGER
   ========================================================= */

.site-header__menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin: 0;
	padding: 0;
	background: var(--etg-white);
	border: 1px solid #eadedb;
	border-radius: 8px;
	color: #785754;
	box-shadow: none;
	appearance: none;
}

.site-header__menu-icon {
	display: block;
	font-size: 24px;
	line-height: 1;
}

/* =========================================================
   MOBİL ARAMA VE MENÜ
   ========================================================= */

.etg-mobile-search-wrap,
.etg-mobile-navigation-wrap {
	display: none;
}

.etg-mobile-navigation-wrap .site-navigation {
	display: block;
}

.etg-navigation-ready .etg-mobile-navigation-wrap .site-navigation {
	display: none;
}

.etg-navigation-ready .etg-mobile-navigation-wrap .site-navigation.is-open {
	display: block;
}

.etg-mobile-navigation__menu {
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

.etg-mobile-navigation__menu li {
	margin: 0 !important;
	padding: 0 !important;
	border-bottom: 1px solid var(--etg-border);
	list-style: none !important;
}

.etg-mobile-navigation__menu li::marker {
	display: none;
	content: "";
}

.etg-mobile-navigation__menu a {
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 50px;
	padding: 0 4px;
	color: #493b39;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
}

.etg-mobile-navigation__menu .etg-mega-menu__heading > a {
	flex: 1;
}

.etg-mobile-navigation__menu .etg-mega-menu__toggle {
	width: 48px;
	min-width: 48px;
	height: 50px;
}

.etg-mobile-navigation__menu .etg-mega-menu__panel {
	padding: 0 0 10px 16px;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.etg-navigation-ready .etg-mobile-navigation__menu .etg-mega-menu__panel {
	display: none;
}

.etg-navigation-ready .etg-mobile-navigation__menu .etg-mega-menu__item.is-open > .etg-mega-menu__panel {
	display: block;
}

.etg-mobile-navigation__menu .etg-mega-menu__panel li {
	border-bottom: 0;
}

.etg-mobile-navigation__menu .etg-mega-menu__panel a {
	min-height: 44px;
	font-weight: 500;
}

/* =========================================================
   ANA İÇERİK
   ========================================================= */

.site-main {
	display: block;
	min-height: 60vh;
	padding: 58px 0;
}

.site-main h1 {
	margin: 0 0 24px;
	color: var(--etg-text);
	font-size: clamp(30px, 4vw, 44px);
	line-height: 1.15;
}

.site-main p {
	margin: 0;
	color: var(--etg-muted);
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
	display: block;
	width: 100%;
	padding: 28px 0;
	background: var(--etg-white);
	border-top: 1px solid var(--etg-border);
}

.site-footer p {
	margin: 0;
	color: #655653;
	font-size: 14px;
}

/* =========================================================
   1200 PX
   ========================================================= */

@media screen and (max-width: 1200px) {
	.etg-main-header__inner {
		grid-template-columns: 185px minmax(430px, 1fr) 270px;
		gap: 20px;
	}

	.etg-main-header__branding .custom-logo {
		max-width: 175px !important;
		max-height: 72px !important;
	}

	.etg-desktop-navigation__menu {
		gap: 18px;
	}

	.etg-desktop-navigation__menu a {
		font-size: 12px;
	}
}

/* =========================================================
   TABLET
   ========================================================= */

@media screen and (max-width: 1024px) {
	.etg-container {
		width: min(calc(100% - 32px), var(--etg-container));
	}

	.etg-announcement-bar__inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.etg-announcement-bar__item:nth-child(3) {
		display: none;
	}

	.etg-main-header__inner {
		grid-template-columns: minmax(130px, 1fr) auto auto;
		gap: 15px;
		min-height: 82px;
	}

	.etg-main-header__branding .custom-logo {
		max-width: 155px !important;
		max-height: 62px !important;
	}

	.etg-desktop-navigation {
		display: none !important;
	}

	.etg-main-header__right {
		display: block;
		width: auto;
	}

	.etg-main-header__right .etg-header-search {
		display: none;
	}

	.etg-header-actions {
		gap: 15px;
		padding-right: 0;
	}

	.site-header__menu-toggle {
		display: inline-flex;
	}

	.etg-mobile-search-wrap {
		display: block;
		padding: 0 0 13px;
		background: var(--etg-white);
	}

	.etg-header-search--mobile {
		display: flex;
		height: 46px;
	}

	.etg-mobile-navigation-wrap {
		display: block;
		background: var(--etg-white);
		border-top: 1px solid var(--etg-border);
	}

	.etg-mobile-navigation-wrap .site-navigation {
		width: 100%;
	}
}

/* =========================================================
   MOBİL
   ========================================================= */

@media screen and (max-width: 600px) {
	.etg-container {
		width: min(calc(100% - 24px), var(--etg-container));
	}

	.etg-announcement-bar__inner {
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 34px;
	}

	.etg-announcement-bar__item {
		display: none;
		font-size: 11px;
	}

	.etg-announcement-bar__item:first-child {
		display: flex;
	}

	.etg-main-header__inner {
		grid-template-columns: minmax(95px, 1fr) auto auto;
		gap: 10px;
		min-height: 72px;
	}

	.etg-main-header__branding .custom-logo {
		max-width: 125px !important;
		max-height: 52px !important;
	}

	.etg-header-actions {
		gap: 10px;
	}

	.etg-header-action {
		width: 25px;
		height: 25px;
	}

	.etg-header-action svg {
		width: 22px;
		height: 22px;
	}

	.site-header__menu-toggle {
		width: 39px;
		height: 39px;
	}

	.site-header__menu-icon {
		font-size: 22px;
	}

	.etg-mobile-search-wrap {
		padding-bottom: 11px;
	}

	.etg-header-search--mobile {
		height: 43px;
	}

	.etg-header-search__field {
		height: 41px;
		font-size: 12px;
	}

	.etg-header-search__button {
		height: 41px;
	}

	.site-main {
		padding: 38px 0;
	}
}

/* =========================================================
   SITE FOOTER
   ========================================================= */

.etg-site-footer {
	padding: 44px 0 22px;
	background:
		radial-gradient(circle at 7% 15%, rgba(255, 255, 255, 0.8), transparent 23%),
		linear-gradient(105deg, #fff3ef 0%, #fffaf7 52%, #fff0ea 100%);
	border-top: 1px solid #f3e5df;
	color: #514541;
}

.etg-footer-main {
	display: grid;
	grid-template-columns: 1.3fr 0.8fr 1fr 1fr 1.25fr;
	gap: 42px;
	padding-bottom: 34px;
}

.etg-footer-brand__logo {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	color: #e8757d;
	text-decoration: none;
}

.etg-footer-brand__logo img {
	display: block;
	width: auto;
	max-width: 185px;
	height: 75px;
	object-fit: contain;
}

.etg-footer-brand__name {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 48px;
	font-style: italic;
	font-weight: 500;
	line-height: 1;
	letter-spacing: -0.06em;
}

.etg-footer-brand__bear {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 63px;
	height: 63px;
	background: #c58a56;
	border-radius: 50%;
	box-shadow: inset 0 -6px 0 rgba(105, 65, 34, 0.08);
}

.etg-footer-brand__bear::before {
	content: "";
	position: absolute;
	bottom: 10px;
	width: 35px;
	height: 26px;
	background: #e4b47f;
	border-radius: 50%;
}

.etg-footer-brand__bear::after {
	content: "";
	position: absolute;
	top: 22px;
	width: 6px;
	height: 6px;
	background: #493025;
	border-radius: 50%;
	box-shadow: -15px 0 0 #493025, 15px 0 0 #493025;
}

.etg-footer-brand__bear-ear {
	position: absolute;
	z-index: -1;
	top: -5px;
	width: 23px;
	height: 23px;
	background: #a96e40;
	border: 4px solid #c98b55;
	border-radius: 50%;
}

.etg-footer-brand__bear-ear--left {
	left: 1px;
}

.etg-footer-brand__bear-ear--right {
	right: 1px;
}

.etg-footer-brand__bear-face {
	position: relative;
	z-index: 2;
	margin-top: 31px;
	color: #e7737b;
	font-size: 9px;
}

.etg-footer-brand__description {
	max-width: 225px;
	margin: 18px 0;
	color: #6e605c;
	font-size: 12px;
	line-height: 1.7;
}

.etg-footer-social {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.etg-footer-social a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: fit-content;
	min-height: 28px;
	color: #5c4c48;
	font-size: 12px;
	font-weight: 700;
	text-decoration: none;
	transition:
		color 0.2s ease,
		transform 0.2s ease;
}

.etg-footer-social a:hover,
.etg-footer-social a:focus-visible {
	color: #e5737b;
	transform: translateY(-2px);
}

.etg-footer-social svg {
	display: block;
	width: 18px;
	height: 18px;
}

.etg-footer-social__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid #efdeda;
	border-radius: 50%;
}

.etg-footer-column__title {
	margin: 5px 0 17px;
	color: #352b28;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.3;
	text-transform: uppercase;
}

.etg-footer-menu,
.etg-footer-contact__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.etg-footer-menu {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.etg-footer-menu a {
	color: #645652;
	font-size: 12px;
	line-height: 1.35;
	text-decoration: none;
	transition:
		color 0.2s ease,
		padding-left 0.2s ease;
}

.etg-footer-menu a:hover,
.etg-footer-menu a:focus-visible {
	padding-left: 4px;
	color: #e36f77;
}

.etg-footer-contact__list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.etg-footer-contact__list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.etg-footer-contact__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	color: #634b46;
}

.etg-footer-contact__icon svg {
	width: 100%;
	height: 100%;
}

.etg-footer-contact a,
.etg-footer-contact address {
	margin: 0;
	color: #645652;
	font-size: 12px;
	font-style: normal;
	line-height: 1.65;
	text-decoration: none;
}

.etg-footer-contact a:hover,
.etg-footer-contact a:focus-visible {
	color: #e36f77;
}

.etg-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 25px;
	padding-top: 21px;
	border-top: 1px solid rgba(211, 185, 177, 0.55);
}

.etg-footer-copyright {
	margin: 0;
	color: #756763;
	font-size: 11px;
}

.etg-footer-payments {
	display: flex;
	align-items: center;
	gap: 20px;
}

.etg-payment-logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	line-height: 1;
}

.etg-payment-logo--visa {
	color: #1752a4;
	font-size: 26px;
	font-style: italic;
	letter-spacing: -0.08em;
}

.etg-payment-logo--mastercard {
	position: relative;
	width: 48px;
	height: 28px;
}

.etg-payment-logo--mastercard span {
	position: absolute;
	width: 27px;
	height: 27px;
	border-radius: 50%;
}

.etg-payment-logo--mastercard span:first-child {
	left: 3px;
	background: #e94d32;
}

.etg-payment-logo--mastercard span:last-child {
	right: 3px;
	background: rgba(245, 159, 36, 0.9);
}

.etg-payment-logo--troy {
	color: #186e86;
	font-size: 24px;
	font-style: italic;
	letter-spacing: -0.07em;
}

.etg-payment-secure {
	display: grid;
	grid-template-columns: auto auto;
	grid-template-rows: auto auto;
	align-items: center;
	column-gap: 5px;
	color: #69a743;
	line-height: 1;
}

.etg-payment-secure > span {
	grid-row: 1 / 3;
	font-size: 20px;
}

.etg-payment-secure strong {
	font-size: 9px;
}

.etg-payment-secure small {
	font-size: 9px;
	font-weight: 800;
}

/* =========================================================
   FOOTER TABLET
   ========================================================= */

@media screen and (max-width: 1100px) {
	.etg-footer-main {
		grid-template-columns: 1.4fr repeat(2, 1fr);
		gap: 35px 40px;
	}

	.etg-footer-contact {
		grid-column: span 2;
	}
}

@media screen and (max-width: 800px) {
	.etg-site-footer {
		padding-top: 38px;
	}

	.etg-footer-main {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 34px 28px;
	}

	.etg-footer-brand {
		grid-column: 1 / -1;
	}

	.etg-footer-brand__description {
		max-width: 410px;
	}

	.etg-footer-contact {
		grid-column: auto;
	}

	.etg-footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	.etg-footer-payments {
		flex-wrap: wrap;
	}
}

/* =========================================================
   FOOTER MOBILE
   ========================================================= */

@media screen and (max-width: 600px) {
	.etg-site-footer {
		padding: 32px 0 20px;
	}

	.etg-footer-main {
		grid-template-columns: 1fr;
		gap: 29px;
		padding-bottom: 28px;
	}

	.etg-footer-brand {
		grid-column: auto;
	}

	.etg-footer-brand__name {
		font-size: 43px;
	}

	.etg-footer-brand__description {
		max-width: 290px;
	}

	.etg-footer-column__title {
		margin-bottom: 13px;
	}

	.etg-footer-menu {
		gap: 9px;
	}

	.etg-footer-bottom {
		align-items: center;
		text-align: center;
	}

	.etg-footer-payments {
		justify-content: center;
		gap: 16px;
	}

	.etg-payment-logo--visa {
		font-size: 22px;
	}

	.etg-payment-logo--troy {
		font-size: 21px;
	}
}


/* =========================================================
   TEDDY HOME HERO
   ========================================================= */

.etg-home {
	width: 100%;
	overflow: hidden;
}

.etg-hero {
	position: relative;
	background:
		radial-gradient(circle at 72% 44%, rgba(255, 255, 255, 0.72), transparent 30%),
		linear-gradient(90deg, #fff8f1 0%, #fff3ef 50%, #fbd6d4 100%);
}

.etg-hero__inner {
	position: relative;
	display: grid;
	grid-template-columns: 205px minmax(0, 1fr) minmax(360px, 1.08fr);
	align-items: center;
	min-height: 570px;
}

.etg-home-quick-nav {
	position: relative;
	z-index: 6;
	align-self: center;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(235, 207, 207, 0.9);
	border-radius: 14px;
	box-shadow: 0 12px 30px rgba(111, 77, 69, 0.09);
}

.etg-home-quick-nav__title {
	margin: 0;
	padding: 15px 18px;
	background: #fff1f4;
	color: #d94f70;
	font-size: 17px;
	font-weight: 800;
	text-transform: uppercase;
}

.etg-home-quick-nav__list {
	display: grid;
	gap: 0;
	margin: 0;
	padding: 10px 0;
	list-style: none;
}

.etg-home-quick-nav__list a {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 39px;
	padding: 7px 16px;
	color: #493d3a;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.35;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.etg-home-quick-nav__list a span {
	flex: 0 0 10px;
	width: 10px;
	height: 10px;
	background: #f6c8d4;
	border-radius: 50%;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.etg-home-quick-nav__list a:hover,
.etg-home-quick-nav__list a:focus-visible {
	background: #fff5f7;
	color: #b73f5c;
}

.etg-home-quick-nav__list a:hover span,
.etg-home-quick-nav__list a:focus-visible span {
	background: #e96887;
	transform: scale(1.15);
}

.etg-hero__content {
	position: relative;
	z-index: 3;
	padding-left: 42px;
}

.etg-hero__eyebrow {
	display: inline-block;
	margin-bottom: 16px;
	color: #a64b54;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.etg-hero__title {
	max-width: 520px;
	margin: 0;
	color: #2f2927;
	font-size: clamp(44px, 4.3vw, 70px);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.03em;
}

.etg-hero__description {
	margin: 24px 0 0;
	color: #5e514e;
	font-size: 18px;
	line-height: 1.7;
}

.etg-hero__actions {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-top: 34px;
}

.etg-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 52px;
	padding: 0 24px;
	border: 0;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
}

.etg-button--primary {
	background: linear-gradient(90deg, #ef7d84 0%, #eb6f78 100%);
	color: #ffffff;
	box-shadow: 0 10px 24px rgba(235, 111, 120, 0.24);
}

.etg-button--primary:hover,
.etg-button--primary:focus-visible {
	color: #ffffff;
	transform: translateY(-1px);
}

.etg-button--video {
	padding: 0;
	background: transparent;
	color: #3d3432;
}

.etg-button__play {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid #a64b54;
	border-radius: 50%;
	color: #a64b54;
}

.etg-hero__visual {
	position: relative;
	align-self: stretch;
	min-height: 570px;
}

.etg-hero__visual-circle {
	position: absolute;
	top: 30px;
	right: 90px;
	width: 440px;
	height: 440px;
	border: 2px dashed rgba(238, 133, 139, 0.5);
	border-radius: 50%;
}

.etg-hero__image {
	position: absolute;
	z-index: 2;
	right: 85px;
	bottom: 0;
	width: min(520px, 92%);
	max-height: 540px;
	object-fit: contain;
	object-position: bottom center;
}

.etg-hero__decor {
	position: absolute;
	z-index: 1;
	color: #ef979b;
	opacity: 0.85;
}

.etg-hero__decor--star-one {
	top: 190px;
	right: 30px;
	font-size: 34px;
}

.etg-hero__decor--star-two {
	right: 440px;
	bottom: 95px;
	font-size: 30px;
}

.etg-hero__decor--heart {
	top: 180px;
	left: 10px;
	font-size: 28px;
}

.etg-hero__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	z-index: 5;
	top: 50%;
	width: 48px;
	height: 48px;
	padding: 0;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(229, 215, 210, 0.9);
	border-radius: 50%;
	color: #403633;
	font-size: 32px;
	line-height: 1;
	box-shadow: 0 8px 20px rgba(94, 72, 66, 0.08);
	transform: translateY(-50%);
}

.etg-hero__arrow--left {
	left: 12px;
}

.etg-hero__arrow--right {
	right: 12px;
}

.etg-hero__dots {
	display: flex;
	align-items: center;
	gap: 8px;
	position: absolute;
	z-index: 5;
	bottom: 28px;
	left: 50%;
	transform: translateX(-50%);
}

.etg-hero__dots span {
	display: block;
	width: 9px;
	height: 9px;
	background: #cdbeb9;
	border-radius: 50%;
}

.etg-hero__dots .is-active {
	width: 22px;
	background: #e77d83;
	border-radius: 999px;
}

/* =========================================================
   BENEFITS
   ========================================================= */

.etg-benefits {
	position: relative;
	z-index: 10;
	margin-top: -28px;
}

.etg-benefits__grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0;
	padding: 27px 30px;
	background: #ffffff;
	border: 1px solid #f1e7e4;
	border-radius: 18px;
	box-shadow: 0 14px 32px rgba(93, 65, 56, 0.10);
}

.etg-benefit {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 0 22px;
	border-right: 1px solid #f0e5e1;
}

.etg-benefit:last-child {
	border-right: 0;
}

.etg-benefit__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	color: #e87e84;
	font-size: 27px;
	line-height: 1;
}

.etg-benefit h3 {
	margin: 0 0 5px;
	color: #443936;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.3;
}

.etg-benefit p {
	margin: 0;
	color: #756764;
	font-size: 11px;
	line-height: 1.45;
}

/* =========================================================
   HERO RESPONSIVE
   ========================================================= */

@media screen and (max-width: 1200px) {
	.etg-hero__inner {
		grid-template-columns: 185px minmax(0, 1fr) minmax(320px, 0.9fr);
	}

	.etg-hero__content {
		padding-left: 28px;
	}

	.etg-hero__image {
		right: 30px;
	}

	.etg-hero__visual-circle {
		right: 30px;
		width: 400px;
		height: 400px;
	}

	.etg-benefits__grid {
		padding-right: 15px;
		padding-left: 15px;
	}

	.etg-benefit {
		padding-right: 12px;
		padding-left: 12px;
	}
}

@media screen and (max-width: 1024px) {
	.etg-hero__inner {
		grid-template-columns: 1fr;
		min-height: auto;
		padding-top: 24px;
		padding-bottom: 0;
	}

	.etg-home-quick-nav {
		margin: 0 24px 44px;
		overflow: visible;
		background: transparent;
		border: 0;
		border-radius: 0;
		box-shadow: none;
	}

	.etg-home-quick-nav__title {
		margin-bottom: 10px;
		padding: 0;
		background: transparent;
		font-size: 15px;
	}

	.etg-home-quick-nav__list {
		display: flex;
		gap: 9px;
		padding: 0 0 6px;
		overflow-x: auto;
		scrollbar-width: none;
	}

	.etg-home-quick-nav__list::-webkit-scrollbar {
		display: none;
	}

	.etg-home-quick-nav__list li {
		flex: 0 0 auto;
	}

	.etg-home-quick-nav__list a {
		min-height: 42px;
		padding: 8px 14px;
		background: rgba(255, 255, 255, 0.92);
		border: 1px solid #efdfe1;
		border-radius: 999px;
	}

	.etg-hero__content {
		padding: 0 52px;
		text-align: center;
	}

	.etg-hero__title {
		margin-right: auto;
		margin-left: auto;
	}

	.etg-hero__actions {
		justify-content: center;
	}

	.etg-hero__visual {
		min-height: 470px;
	}

	.etg-hero__image {
		right: 50%;
		width: min(470px, 85%);
		transform: translateX(50%);
	}

	.etg-hero__visual-circle {
		right: 50%;
		width: 360px;
		height: 360px;
		transform: translateX(50%);
	}

	.etg-benefits {
		margin-top: 0;
		padding-top: 28px;
	}

	.etg-benefits__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 24px 0;
	}

	.etg-benefit {
		border-right: 0;
	}
}

@media screen and (max-width: 600px) {
	.etg-hero__inner {
		padding-top: 18px;
	}

	.etg-home-quick-nav {
		margin: 0 10px 34px;
	}

	.etg-hero__content {
		padding: 0 10px;
	}

	.etg-hero__eyebrow {
		margin-bottom: 12px;
		font-size: 12px;
	}

	.etg-hero__title {
		font-size: 38px;
	}

	.etg-hero__description {
		margin-top: 18px;
		font-size: 15px;
	}

	.etg-hero__actions {
		flex-direction: column;
		gap: 14px;
		margin-top: 26px;
	}

	.etg-button {
		width: 100%;
		max-width: 250px;
	}

	.etg-button--video {
		width: auto;
	}

	.etg-hero__visual {
		min-height: 390px;
	}

	.etg-hero__image {
		width: min(380px, 96%);
	}

	.etg-hero__visual-circle {
		top: 40px;
		width: 300px;
		height: 300px;
	}

	.etg-hero__arrow {
		width: 40px;
		height: 40px;
		font-size: 27px;
	}

	.etg-benefits__grid {
		grid-template-columns: 1fr;
		padding: 24px 20px;
	}

	.etg-benefit {
		padding: 0;
	}

	.etg-benefit__icon {
		flex-basis: 40px;
		width: 40px;
		height: 40px;
	}
}
/* =========================================================
   HERO TEDDY CENTER FIX
   ========================================================= */

.etg-hero__visual {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	align-self: stretch;
	min-height: 570px;
}

.etg-hero__visual-circle {
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	width: 440px;
	height: 440px;
	border: 2px dashed rgba(238, 133, 139, 0.55);
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

.etg-hero__image-frame {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	width: 440px;
	height: 440px;
	transform: translate(-50%, -50%);
}

.etg-hero__image {
	display: block;
	position: static;
	width: auto;
	max-width: 94%;
	height: auto;
	max-height: 108%;
	object-fit: contain;
	object-position: center;
	transform: translateY(14px);
}

.etg-hero__decor--star-one {
	top: 34%;
	right: 3%;
}

.etg-hero__decor--star-two {
	right: auto;
	bottom: 15%;
	left: 8%;
}

.etg-hero__decor--heart {
	top: 35%;
	left: 3%;
}

/* =========================================================
   CATEGORY CARDS
   ========================================================= */

.etg-categories {
	padding-top: 38px;
	padding-bottom: 54px;
	background: #ffffff;
}

.etg-categories__grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 20px;
}

.etg-category-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	background: #ffffff;
	border: 1px solid rgba(227, 214, 210, 0.8);
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(91, 67, 60, 0.07);
	text-decoration: none;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.etg-category-card:hover,
.etg-category-card:focus-visible {
	color: inherit;
	text-decoration: none;
	transform: translateY(-4px);
	box-shadow: 0 12px 26px rgba(91, 67, 60, 0.13);
}

.etg-category-card__visual {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	position: relative;
	height: 230px;
	overflow: hidden;
}

.etg-category-card--pink .etg-category-card__visual {
	background: linear-gradient(145deg, #f9cbc8 0%, #fce0dc 100%);
}

.etg-category-card--blue .etg-category-card__visual {
	background: linear-gradient(145deg, #cbe7eb 0%, #e1f2f4 100%);
}

.etg-category-card--yellow .etg-category-card__visual {
	background: linear-gradient(145deg, #f8dfad 0%, #fff0cc 100%);
}

.etg-category-card--purple .etg-category-card__visual {
	background: linear-gradient(145deg, #ddd0e9 0%, #efe6f5 100%);
}

.etg-category-card--green .etg-category-card__visual {
	background: linear-gradient(145deg, #cfe4c1 0%, #e5f1dc 100%);
}

.etg-category-card__visual::before {
	position: absolute;
	top: 18px;
	left: 18px;
	width: 58px;
	height: 58px;
	background: rgba(255, 255, 255, 0.23);
	border-radius: 50%;
	content: "";
}

.etg-category-card__visual::after {
	position: absolute;
	right: -28px;
	bottom: -30px;
	width: 120px;
	height: 120px;
	background: rgba(255, 255, 255, 0.18);
	border-radius: 50%;
	content: "";
}

.etg-category-card__image {
	position: relative;
	z-index: 2;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center bottom;
	transition: transform 0.3s ease;
}

.etg-category-card:hover .etg-category-card__image,
.etg-category-card:focus-visible .etg-category-card__image {
	transform: scale(1.025);
}

.etg-category-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	min-height: 68px;
	padding: 13px 14px 13px 17px;
	background: #ffffff;
}

.etg-category-card__title {
	color: #423735;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
}

.etg-category-card__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 35px;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	color: #ffffff;
	transition: transform 0.2s ease;
}

.etg-category-card:hover .etg-category-card__arrow,
.etg-category-card:focus-visible .etg-category-card__arrow {
	transform: translateX(2px);
}

.etg-category-card--pink .etg-category-card__arrow {
	background: #eb858b;
}

.etg-category-card--blue .etg-category-card__arrow {
	background: #72b8ca;
}

.etg-category-card--yellow .etg-category-card__arrow {
	background: #f1b856;
}

.etg-category-card--purple .etg-category-card__arrow {
	background: #a88bc3;
}

.etg-category-card--green .etg-category-card__arrow {
	background: #86b76f;
}

/* =========================================================
   CATEGORY RESPONSIVE
   ========================================================= */

@media screen and (max-width: 1200px) {
	.etg-hero__visual-circle,
	.etg-hero__image-frame {
		width: 400px;
		height: 400px;
	}

	.etg-categories__grid {
		gap: 15px;
	}

	.etg-category-card__visual {
		height: 205px;
	}
}

@media screen and (max-width: 1024px) {
	.etg-hero__visual-circle,
	.etg-hero__image-frame {
		top: 52%;
		width: 370px;
		height: 370px;
	}

	.etg-hero__image {
		max-height: 106%;
		transform: translateY(10px);
	}

	.etg-categories {
		padding-top: 32px;
	}

	.etg-categories__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.etg-category-card__visual {
		height: 230px;
	}
}

@media screen and (max-width: 760px) {
	.etg-categories__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.etg-category-card__visual {
		height: 220px;
	}
}

@media screen and (max-width: 600px) {
	.etg-hero__visual-circle,
	.etg-hero__image-frame {
		top: 52%;
		width: 310px;
		height: 310px;
	}

	.etg-hero__image {
		max-width: 96%;
		max-height: 108%;
		transform: translateY(8px);
	}

	.etg-hero__decor--star-one {
		right: 1%;
	}

	.etg-hero__decor--star-two {
		left: 2%;
	}

	.etg-categories {
		padding-top: 26px;
		padding-bottom: 38px;
	}

	.etg-categories__grid {
		display: flex;
		gap: 13px;
		margin-right: -12px;
		padding-right: 12px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}

	.etg-categories__grid::-webkit-scrollbar {
		display: none;
	}

	.etg-category-card {
		flex: 0 0 78%;
		scroll-snap-align: start;
	}

	.etg-category-card__visual {
		height: 250px;
	}
}
/* =========================================================
   CATEGORY CARDS — FINAL LAYOUT
   ========================================================= */

.etg-categories__grid .etg-category-card__visual {
	height: 250px;
}

.etg-categories__grid .etg-category-card__image {
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	transform: none;
}

/* Her görsele kendi kadraj ayarı */
.etg-categories__grid
.etg-category-card.etg-category-card--pink
.etg-category-card__image {
	object-position: center 38%;
}

.etg-categories__grid
.etg-category-card.etg-category-card--blue
.etg-category-card__image {
	object-position: center 38%;
}

.etg-categories__grid
.etg-category-card.etg-category-card--yellow
.etg-category-card__image {
	object-position: center center;
}

.etg-categories__grid
.etg-category-card.etg-category-card--purple
.etg-category-card__image {
	object-position: center center;
}

.etg-categories__grid
.etg-category-card.etg-category-card--green
.etg-category-card__image {
	object-position: center center;
}

/* Hover sırasında kadraj bozulmasın */
.etg-categories__grid
.etg-category-card:hover
.etg-category-card__image,
.etg-categories__grid
.etg-category-card:focus-visible
.etg-category-card__image {
	transform: scale(1.025);
}

/* Tüm kartların ve alt başlıkların eşit yüksekliği */
.etg-categories__grid .etg-category-card {
	height: 340px;
}

.etg-categories__grid .etg-category-card__footer {
	flex: 1;
	min-height: 90px;
	padding: 16px 18px;
}

/* Tablet */
@media screen and (max-width: 1024px) {
	.etg-categories__grid .etg-category-card {
		height: 330px;
	}

	.etg-categories__grid .etg-category-card__visual {
		height: 240px;
	}
}

/* Mobil yatay kartlar */
@media screen and (max-width: 600px) {
	.etg-categories__grid .etg-category-card {
		height: 330px;
	}

	.etg-categories__grid .etg-category-card__visual {
		height: 240px;
	}
}
/* =========================================================
   CATEGORY IMAGE FINAL FRAMING
   ========================================================= */

/* İlk üç kartta görselin daha fazla kısmını göster */
.etg-category-card--pink .etg-category-card__image,
.etg-category-card--blue .etg-category-card__image,
.etg-category-card--yellow .etg-category-card__image {
	object-fit: cover;
	transform: scale(0.94);
}

/* Ölçek küçülünce kenarlarda boşluk oluşmaması için */
.etg-category-card--pink .etg-category-card__visual {
	background-color: #f9cfcb;
}

.etg-category-card--blue .etg-category-card__visual {
	background-color: #d3edf1;
}

.etg-category-card--yellow .etg-category-card__visual {
	background-color: #ffe6ae;
}

/* Kız çocuk kadrajı */
.etg-category-card--pink .etg-category-card__image {
	object-position: center 48%;
}

/* Erkek çocuk kadrajı */
.etg-category-card--blue .etg-category-card__image {
	object-position: center 48%;
}

/* Bebek giyim kadrajı */
.etg-category-card--yellow .etg-category-card__image {
	object-position: center 50%;
}

/* Hover sırasında özel kadraj korunur */
.etg-category-card--pink:hover .etg-category-card__image,
.etg-category-card--pink:focus-visible .etg-category-card__image,
.etg-category-card--blue:hover .etg-category-card__image,
.etg-category-card--blue:focus-visible .etg-category-card__image,
.etg-category-card--yellow:hover .etg-category-card__image,
.etg-category-card--yellow:focus-visible .etg-category-card__image {
	transform: scale(0.97);
}
/* =========================================================
   CATEGORY 2-3 FINAL POSITIONING
   ========================================================= */

/* Erkek Çocuk */
.etg-category-card--blue .etg-category-card__image {
	width: 108%;
	height: 108%;
	max-width: none;
	object-fit: cover;
	object-position: center 42%;
	transform: translateY(8px);
}

/* Bebek Giyim */
.etg-category-card--yellow .etg-category-card__image {
	width: 106%;
	height: 106%;
	max-width: none;
	object-fit: cover;
	object-position: center 43%;
	transform: translateY(6px);
}

/* Hover sırasında aynı kadraj korunsun */
.etg-category-card--blue:hover .etg-category-card__image,
.etg-category-card--blue:focus-visible .etg-category-card__image {
	transform: translateY(8px) scale(1.02);
}

.etg-category-card--yellow:hover .etg-category-card__image,
.etg-category-card--yellow:focus-visible .etg-category-card__image {
	transform: translateY(6px) scale(1.02);
}

/* Tablet */
@media screen and (max-width: 1024px) {
	.etg-category-card--blue .etg-category-card__image {
		width: 105%;
		height: 105%;
		object-position: center 44%;
		transform: translateY(5px);
	}

	.etg-category-card--yellow .etg-category-card__image {
		width: 104%;
		height: 104%;
		object-position: center 45%;
		transform: translateY(4px);
	}
}

/* Mobil */
@media screen and (max-width: 600px) {
	.etg-category-card--blue .etg-category-card__image,
	.etg-category-card--yellow .etg-category-card__image {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center center;
		transform: none;
	}

	.etg-category-card--blue:hover .etg-category-card__image,
	.etg-category-card--blue:focus-visible .etg-category-card__image,
	.etg-category-card--yellow:hover .etg-category-card__image,
	.etg-category-card--yellow:focus-visible .etg-category-card__image {
		transform: scale(1.02);
	}
}


/* =========================================================
   CATEGORY COLUMN NAVIGATION
   ========================================================= */

.etg-categories__grid .etg-category-card {
	position: relative;
	height: auto;
	min-height: 395px;
	overflow: visible;
	border-color: color-mix(in srgb, var(--etg-category-accent, #df6f76) 28%, #ffffff);
	border-radius: 12px;
	box-shadow: 0 3px 12px rgba(91, 67, 60, 0.05);
}

.etg-category-card--pink {
	--etg-category-accent: #e94f82;
	--etg-category-soft: #fff1f6;
}

.etg-category-card--blue {
	--etg-category-accent: #3d8dcc;
	--etg-category-soft: #eff7fd;
}

.etg-category-card--yellow {
	--etg-category-accent: #e7a42f;
	--etg-category-soft: #fff8e9;
}

.etg-category-card--purple {
	--etg-category-accent: #8a62ad;
	--etg-category-soft: #f7f1fb;
}

.etg-category-card--green {
	--etg-category-accent: #31936c;
	--etg-category-soft: #eff9f5;
}

.etg-category-card__number {
	display: grid;
	place-items: center;
	position: absolute;
	z-index: 4;
	top: -12px;
	left: 50%;
	width: 25px;
	height: 25px;
	background: var(--etg-category-accent);
	border: 3px solid #ffffff;
	border-radius: 50%;
	color: #ffffff;
	font-size: 12px;
	font-weight: 800;
	transform: translateX(-50%);
}

.etg-category-card__main {
	display: block;
	padding: 13px 9px 0;
	color: inherit;
	text-align: center;
	text-decoration: none;
}

.etg-categories__grid .etg-category-card__visual {
	height: 122px;
	overflow: hidden;
	background: var(--etg-category-soft);
	border-radius: 8px;
}

.etg-categories__grid .etg-category-card__image,
.etg-category-card--blue .etg-category-card__image,
.etg-category-card--yellow .etg-category-card__image {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	transform: none;
}

.etg-categories__grid .etg-category-card:hover .etg-category-card__image,
.etg-categories__grid .etg-category-card:focus-within .etg-category-card__image {
	transform: scale(1.04);
}

.etg-categories__grid .etg-category-card__footer {
	justify-content: center;
	min-height: 52px;
	padding: 9px 4px 10px;
	background: transparent;
}

.etg-category-card__title {
	color: #302a28;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}

.etg-category-card__arrow {
	display: none;
}

.etg-category-card__quick-links {
	display: grid;
	gap: 6px;
	padding: 0 9px 12px;
}

.etg-category-card__quick-title {
	padding: 5px 7px;
	background: var(--etg-category-soft);
	border: 1px solid color-mix(in srgb, var(--etg-category-accent) 18%, #ffffff);
	border-radius: 5px;
	color: var(--etg-category-accent);
	font-size: 10px;
	font-weight: 800;
	text-align: center;
	text-transform: uppercase;
}

.etg-category-card__quick-links a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 6px;
	min-height: 34px;
	padding: 7px 9px;
	background: var(--etg-category-soft);
	border: 1px solid color-mix(in srgb, var(--etg-category-accent) 13%, #ffffff);
	border-radius: 6px;
	color: #4f4542;
	font-size: 11px;
	font-weight: 600;
	line-height: 1.25;
	text-decoration: none;
}

.etg-category-card__quick-links a:hover,
.etg-category-card__quick-links a:focus-visible {
	border-color: var(--etg-category-accent);
	color: var(--etg-category-accent);
}

@media screen and (max-width: 1024px) {
	.etg-categories__grid .etg-category-card {
		min-height: 380px;
	}

	.etg-categories__grid .etg-category-card__visual {
		height: 130px;
	}
}

@media screen and (max-width: 600px) {
	.etg-category-card {
		flex-basis: 64%;
	}

	.etg-categories__grid .etg-category-card {
		height: auto;
		min-height: 385px;
	}

	.etg-categories__grid .etg-category-card__visual {
		height: 140px;
	}
}

/* Home category navigation: canonical seven-column layout. */
.etg-categories__grid {
	grid-template-columns: repeat(7, minmax(0, 1fr));
	align-items: stretch;
	gap: 12px;
	padding-top: 12px;
}

.etg-categories__grid .etg-category-card {
	height: 100%;
	min-height: 0;
}

.etg-category-card--rose {
	--etg-category-accent: #d95181;
	--etg-category-soft: #fff0f5;
}

.etg-category-card--sale {
	--etg-category-accent: #df477a;
	--etg-category-soft: #fff0f5;
}

.etg-category-card__number {
	z-index: 10;
	background-color: var(--etg-category-accent, #df6f76);
	box-shadow: 0 0 0 2px #ffffff;
}

@media screen and (min-width: 1201px) {
	.etg-categories .etg-container {
		max-width: 1600px;
		padding-right: 14px;
		padding-left: 14px;
	}
}

@media screen and (max-width: 1200px) {
	.etg-categories__grid {
		display: flex;
		align-items: stretch;
		gap: 12px;
		margin-right: -12px;
		padding-right: 12px;
		overflow-x: auto;
		scroll-snap-type: x proximity;
		scrollbar-width: thin;
	}

	.etg-categories__grid .etg-category-card {
		flex: 0 0 210px;
		height: auto;
		scroll-snap-align: start;
	}
}

@media screen and (max-width: 600px) {
	.etg-categories__grid .etg-category-card {
		flex-basis: min(78vw, 260px);
	}
}

.etg-categories__grid .etg-category-card {
	height: 600px;
	max-height: 600px;
	overflow: visible;
}

.etg-category-card__quick-links {
	min-height: 0;
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior: contain;
	scrollbar-color: color-mix(in srgb, var(--etg-category-accent) 45%, #ffffff) transparent;
	scrollbar-width: thin;
}

.etg-category-card:not(.etg-category-card--decorated) .etg-category-card__quick-links {
	flex: 1 1 auto;
}

.etg-category-card__quick-links::-webkit-scrollbar {
	width: 5px;
}

.etg-category-card__quick-links::-webkit-scrollbar-thumb {
	background: color-mix(in srgb, var(--etg-category-accent) 45%, #ffffff);
	border-radius: 999px;
}

.etg-category-card__decoration {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	flex: 1 1 100px;
	min-height: 70px;
	margin: 0 9px 10px;
	overflow: hidden;
	background: linear-gradient(180deg, transparent 0%, var(--etg-category-soft) 100%);
	border-radius: 8px;
}

.etg-category-card__decoration picture {
	display: contents;
}

.etg-category-card__decoration-image {
	display: block;
	width: 100%;
	height: 100%;
	max-height: 150px;
	object-fit: contain;
	object-position: center bottom;
}

@media screen and (max-width: 600px) {
	.etg-categories__grid .etg-category-card {
		height: 560px;
		max-height: 560px;
	}
}

/* =========================================================
   BEST SELLERS
   ========================================================= */

.etg-best-sellers {
	padding: 34px 0 64px;
	background: #ffffff;
}

.etg-section-heading {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 28px;
	text-align: center;
}

.etg-section-heading__eyebrow {
	margin-bottom: 7px;
	color: #a64b54;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.etg-section-heading__title {
	margin: 0;
	color: #342c2a;
	font-size: clamp(26px, 3vw, 36px);
	font-weight: 700;
	line-height: 1.2;
}

.etg-section-heading__line {
	display: block;
	width: 36px;
	height: 3px;
	margin-top: 13px;
	background: #ed858b;
	border-radius: 999px;
}

.etg-products-wrapper {
	position: relative;
}

.etg-products-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 18px;
}

.etg-product-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	background: #ffffff;
	border: 1px solid #eee4e1;
	border-radius: 14px;
	box-shadow: 0 5px 16px rgba(84, 59, 52, 0.06);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.etg-product-card:hover,
.etg-product-card:focus-within {
	transform: translateY(-4px);
	box-shadow: 0 14px 30px rgba(84, 59, 52, 0.12);
}

.etg-product-card__visual {
	position: relative;
	height: 270px;
	overflow: hidden;
	background: #fffaf7;
}

.etg-product-card__image-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.etg-product-card__visual img,
.etg-product-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	transition: transform 0.3s ease;
}

.etg-product-card:hover .etg-product-card__image {
	transform: scale(1.035);
}

.etg-product-card__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	z-index: 3;
	top: 11px;
	left: 11px;
	min-height: 23px;
	padding: 0 9px;
	border-radius: 6px;
	color: #ffffff;
	font-size: 9px;
	font-weight: 700;
	line-height: 1;
}

.etg-product-card__badge--new {
	background: #a64b54;
}

.etg-product-card__badge--new-green {
	background: #80af68;
}

.etg-product-card__badge--popular {
	background: #f0ad3d;
}

.etg-product-card__badge--sale {
	background: #df666e;
}

.etg-product-card__favorite {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	z-index: 3;
	top: 10px;
	right: 10px;
	width: 34px;
	height: 34px;
	padding: 0;
	background: rgba(255, 255, 255, 0.9);
	border: 0;
	border-radius: 50%;
	color: #9d918e;
}

.etg-product-card__favorite:hover {
	color: #e77980;
}

.etg-product-card__content {
	display: flex;
	flex: 1;
	flex-direction: column;
	position: relative;
	padding: 14px 14px 15px;
}

.etg-product-card__title {
	margin: 0 0 8px;
	color: #3e3432;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
}

.etg-product-card__title a {
	color: inherit;
	text-decoration: none;
}

.etg-product-card__rating {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-bottom: 8px;
	font-size: 10px;
}

.etg-product-card__stars {
	overflow: hidden;
	color: #f5aa25;
	letter-spacing: -1px;
	white-space: nowrap;
}

.etg-product-card__rating-value {
	color: #5e514e;
	font-weight: 700;
}

.etg-product-card__reviews {
	color: #9a8e8b;
}

.etg-product-card__price {
	display: flex;
	align-items: center;
	gap: 7px;
	margin-bottom: 12px;
	color: #403533;
	font-size: 17px;
	font-weight: 700;
}

.etg-product-card__price del {
	color: #a69996;
	font-size: 12px;
	font-weight: 500;
}

.etg-product-card__price ins {
	color: inherit;
	text-decoration: none;
}

.etg-product-card__stock {
	margin: -5px 0 9px;
	color: #4f5c0c;
	font-size: 10px;
}

.etg-product-brand {
	display: flex;
	gap: 6px;
	margin: -10px 0 16px;
	color: #897a75;
	font-size: 13px;
}

.etg-product-brand a {
	color: #df6d75;
	font-weight: 700;
	text-decoration: none;
}

.etg-size-guide {
	margin: 0 0 18px;
	border: 1px solid #eadbd6;
	border-radius: 12px;
	background: #fffaf7;
}

.etg-size-guide summary {
	padding: 13px 16px;
	color: #5d4e49;
	font-size: 13px;
	font-weight: 800;
	cursor: pointer;
}

.etg-size-guide__content {
	overflow-x: auto;
	padding: 0 16px 15px;
}

.etg-size-guide table {
	width: 100%;
	min-width: 520px;
	margin: 0 0 10px;
	border-collapse: collapse;
	font-size: 12px;
}

.etg-size-guide th,
.etg-size-guide td {
	padding: 8px;
	border: 1px solid #eadbd6;
	text-align: left;
}

.etg-size-guide__content p,
.etg-variation-status {
	margin: 0;
	color: #746662;
	font-size: 12px;
	line-height: 1.55;
}

.etg-variation-status {
	flex-basis: 100%;
	padding: 9px 12px;
	background: #fff7f3;
	border-radius: 8px;
}

.etg-variation-status:empty {
	display: none;
}

.etg-purchase-summaries {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin: 0 0 22px;
}

.etg-purchase-summaries section {
	padding: 13px;
	background: #fffaf7;
	border: 1px solid #eee1dc;
	border-radius: 10px;
}

.etg-purchase-summaries h3 {
	margin: 0 0 5px;
	color: #4d403c;
	font-size: 12px;
}

.etg-purchase-summaries p {
	margin: 0;
	color: #7b6c67;
	font-size: 11px;
	line-height: 1.55;
}

@media screen and (max-width: 600px) {
	.etg-purchase-summaries {
		grid-template-columns: minmax(0, 1fr);
	}
}

.etg-product-card__sizes {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin-top: auto;
	padding-right: 42px;
}

.etg-product-card__sizes span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 24px;
	padding: 0 7px;
	border: 1px solid #e8deda;
	border-radius: 5px;
	color: #756965;
	font-size: 9px;
	font-weight: 600;
}

.etg-product-card__cart {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	position: absolute;
	right: 13px;
	bottom: 13px;
	width: 37px;
	height: 37px;
	min-height: 37px;
	padding: 0 !important;
	background: #ec858b !important;
	border: 0 !important;
	border-radius: 50% !important;
	color: #ffffff !important;
	text-decoration: none !important;
	box-shadow: none !important;
}

.etg-product-card__cart:hover {
	background: #dc7279 !important;
	color: #ffffff !important;
}

.etg-products-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	z-index: 5;
	top: 50%;
	width: 43px;
	height: 43px;
	padding: 0;
	background: #ffffff;
	border: 1px solid #eee2de;
	border-radius: 50%;
	color: #50413e;
	font-size: 29px;
	box-shadow: 0 7px 18px rgba(76, 53, 47, 0.1);
	transform: translateY(-50%);
}

.etg-products-arrow--left {
	left: -22px;
}

.etg-products-arrow--right {
	right: -22px;
}

.etg-best-sellers__footer {
	display: flex;
	justify-content: center;
	margin-top: 28px;
}

.etg-best-sellers__all {
	min-width: 205px;
}

.etg-products-empty {
	display: flex;
	grid-column: 1 / -1;
	flex-direction: column;
	align-items: center;
	min-height: 280px;
	padding: 48px 24px;
	text-align: center;
	background: #fffaf7;
	border: 1px solid #eee1dc;
	border-radius: 15px;
}

.etg-products-empty__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 68px;
	height: 68px;
	margin-bottom: 15px;
	background: #fde5e2;
	border-radius: 50%;
	color: #e2757d;
}

.etg-products-empty__icon svg {
	width: 36px;
	height: 36px;
}

.etg-products-empty h3 {
	margin: 0 0 9px;
	color: #3b302d;
	font-size: 22px;
}

.etg-products-empty p {
	max-width: 460px;
	margin: 0 0 20px;
	color: #7a6b67;
	font-size: 13px;
	line-height: 1.6;
}

/* =========================================================
   PRODUCT TABLET
   ========================================================= */

@media screen and (max-width: 1200px) {
	.etg-products-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.etg-product-card:nth-child(5) {
		display: none;
	}

	.etg-products-arrow {
		display: none;
	}
}

@media screen and (max-width: 900px) {
	.etg-products-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.etg-product-card:nth-child(4) {
		display: none;
	}

	.etg-product-card__visual {
		height: 260px;
	}
}

/* =========================================================
   PRODUCT MOBILE
   ========================================================= */

@media screen and (max-width: 600px) {
	.etg-best-sellers {
		padding-top: 22px;
		padding-bottom: 46px;
	}

	.etg-section-heading {
		margin-bottom: 21px;
	}

	.etg-section-heading__title {
		font-size: 25px;
	}

	.etg-products-grid {
		display: flex;
		gap: 13px;
		margin-right: -12px;
		padding: 2px 12px 14px 0;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}

	.etg-products-grid::-webkit-scrollbar {
		display: none;
	}

	.etg-products-grid .etg-product-card {
		display: flex;
		flex: 0 0 78%;
		scroll-snap-align: start;
	}

	.etg-products-grid .etg-products-empty {
		flex: 1 0 100%;
		min-height: 240px;
		padding: 38px 20px;
	}

	.etg-product-card__visual {
		height: 290px;
	}

	.etg-product-card__content {
		padding: 14px;
	}

	.etg-best-sellers__footer {
		margin-top: 18px;
	}
}

/* =========================================================
   NEWSLETTER DISCOUNT BANNER
   ========================================================= */

.etg-newsletter-section {
	padding: 10px 0 0;
	background: #ffffff;
}

.etg-newsletter {
	display: grid;
	grid-template-columns: 185px minmax(230px, 1fr) minmax(360px, 1.45fr) 125px;
	align-items: center;
	position: relative;
	min-height: 150px;
	overflow: hidden;
	padding: 15px 28px;
	background:
		radial-gradient(circle at 36% 45%, rgba(255, 255, 255, 0.9) 0 22%, transparent 23%),
		linear-gradient(90deg, #ffe1db 0%, #fff0ec 48%, #ffddd9 100%);
	border-radius: 16px;
	box-shadow: 0 9px 25px rgba(111, 77, 69, 0.1);
}

.etg-newsletter::before {
	content: "";
	position: absolute;
	top: -80px;
	left: 29%;
	width: 260px;
	height: 260px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.34);
}

.etg-newsletter__image-area,
.etg-newsletter__content,
.etg-newsletter__form,
.etg-newsletter__envelope {
	position: relative;
	z-index: 2;
}

.etg-newsletter__image-area {
	align-self: end;
	height: 150px;
}

.etg-newsletter__image {
	display: block;
	position: absolute;
	bottom: -15px;
	left: 0;
	width: 165px;
	height: 165px;
	object-fit: contain;
	object-position: center bottom;
}

.etg-newsletter__image-placeholder {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.etg-newsletter__bear-head {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 112px;
	height: 105px;
	margin-bottom: -5px;
	background: #bd8452;
	border-radius: 48% 48% 45% 45%;
	box-shadow:
		inset 0 -10px 0 rgba(108, 69, 39, 0.09),
		0 8px 15px rgba(105, 67, 39, 0.12);
}

.etg-newsletter__bear-head::before {
	content: "";
	position: absolute;
	bottom: 17px;
	width: 62px;
	height: 45px;
	background: #e4b17e;
	border-radius: 50%;
}

.etg-newsletter__bear-head::after {
	content: "";
	position: absolute;
	top: 35px;
	width: 10px;
	height: 8px;
	background: #4c3022;
	border-radius: 50%;
	box-shadow: -27px 0 0 #4c3022, 27px 0 0 #4c3022;
}

.etg-newsletter__bear-ear {
	position: absolute;
	z-index: -1;
	top: -10px;
	width: 42px;
	height: 42px;
	background: #a96f40;
	border: 7px solid #c98c57;
	border-radius: 50%;
}

.etg-newsletter__bear-ear--left {
	left: -7px;
}

.etg-newsletter__bear-ear--right {
	right: -7px;
}

.etg-newsletter__bear-face {
	position: relative;
	z-index: 2;
	margin-top: 44px;
	color: #e77980;
	font-size: 14px;
}

.etg-newsletter__content {
	padding-left: 5px;
}

.etg-newsletter__eyebrow {
	margin: 0 0 4px;
	color: #3c312f;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.25;
}

.etg-newsletter__title {
	margin: 0 0 5px;
	color: #e8737b;
	font-size: clamp(34px, 3.3vw, 50px);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.03em;
}

.etg-newsletter__description {
	margin: 0;
	color: #5f504d;
	font-size: 14px;
	line-height: 1.5;
}

.etg-newsletter__form {
	display: grid;
	gap: 10px;
	width: 100%;
	max-width: 560px;
	margin-left: auto;
}

.etg-newsletter__fields {
	display: flex;
	align-items: center;
	overflow: hidden;
	background: #ffffff;
	border: 1px solid rgba(224, 192, 185, 0.7);
	border-radius: 999px;
	box-shadow: 0 6px 18px rgba(106, 70, 63, 0.08);
}

.etg-newsletter__consent,
.etg-form-status {
	grid-column: 1 / -1;
}

.etg-newsletter__consent {
	display: flex;
	gap: 9px;
	align-items: center;
	margin: 0 10px;
	color: #594b48;
	font-size: 11px;
	line-height: 1.4;
	cursor: pointer;
}

.etg-newsletter__consent input[type="checkbox"] {
	flex: 0 0 18px;
	width: 18px;
	height: 18px;
	margin: 0;
	accent-color: #a64b54;
	cursor: pointer;
}

.etg-newsletter__consent span {
	max-width: 42ch;
}

.etg-form-honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.etg-form-status {
	margin: 8px 0 0;
	font-weight: 700;
}

.etg-form-status--error {
	color: #a42828;
}

.etg-form-status--pending,
.etg-form-status--already,
.etg-form-status--confirmed,
.etg-form-status--success {
	color: #236b3b;
}

.etg-contact-form {
	max-width: 720px;
	margin-top: 24px;
	padding: 24px;
	background: #fff;
	border: 1px solid #eadfdb;
	border-radius: 16px;
}

.etg-contact-form label {
	display: grid;
	gap: 7px;
	font-weight: 700;
}

.etg-contact-form input,
.etg-contact-form textarea {
	width: 100%;
	box-sizing: border-box;
}

.etg-newsletter__input {
	flex: 1;
	width: 100%;
	height: 52px;
	padding: 0 22px;
	background: transparent;
	border: 0;
	outline: none;
	color: #493d3a;
	font-family: inherit;
	font-size: 13px;
}

.etg-newsletter__input::placeholder {
	color: #756764;
}

.etg-newsletter__submit {
	flex: 0 0 auto;
	height: 52px;
	min-width: 132px;
	padding: 0 24px;
	background: #a64b54;
	border: 0;
	border-radius: 999px;
	color: #ffffff;
	font-family: inherit;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition:
		background-color 0.2s ease,
		transform 0.2s ease;
}

.etg-newsletter__submit:hover,
.etg-newsletter__submit:focus-visible {
	background: #dd6871;
}

.etg-newsletter__submit:active {
	transform: scale(0.98);
}

.etg-newsletter__envelope {
	display: flex;
	align-items: center;
	justify-content: center;
	justify-self: end;
	width: 105px;
	height: 92px;
	color: #ee969a;
	transform: rotate(-5deg);
}

.etg-newsletter__envelope svg {
	width: 100%;
	height: 100%;
}

.etg-newsletter__envelope-heart {
	position: absolute;
	z-index: 2;
	top: 23px;
	color: #e8757e;
	font-size: 19px;
}

.etg-newsletter__decoration {
	position: absolute;
	z-index: 1;
	color: rgba(230, 112, 121, 0.5);
	pointer-events: none;
}

.etg-newsletter__decoration span {
	position: absolute;
	display: block;
}

.etg-newsletter__decoration--left {
	top: 18px;
	left: 20px;
}

.etg-newsletter__decoration--left span:nth-child(1) {
	top: 0;
	left: 0;
	font-size: 10px;
}

.etg-newsletter__decoration--left span:nth-child(2) {
	top: 28px;
	left: 22px;
	font-size: 15px;
}

.etg-newsletter__decoration--left span:nth-child(3) {
	top: 80px;
	left: 8px;
	font-size: 8px;
}

.etg-newsletter__decoration--right {
	top: 16px;
	right: 23px;
}

.etg-newsletter__decoration--right span:nth-child(1) {
	top: 0;
	right: 36px;
	font-size: 13px;
}

.etg-newsletter__decoration--right span:nth-child(2) {
	top: 14px;
	right: 0;
	font-size: 9px;
}

.etg-newsletter__decoration--right span:nth-child(3) {
	top: 92px;
	right: 18px;
	font-size: 8px;
}

/* =========================================================
   NEWSLETTER TRUST STRIP
   ========================================================= */

.etg-trust-strip {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	align-items: center;
	gap: 20px;
	padding: 20px 34px;
}

.etg-trust-item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: 0;
	color: #3f3431;
}

.etg-trust-item__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 29px;
	height: 29px;
	color: #df6f76;
}

.etg-trust-item__icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.etg-trust-item__text {
	font-size: 13px;
	font-weight: 600;
	line-height: 1.35;
}

/* =========================================================
   NEWSLETTER TABLET
   ========================================================= */

@media screen and (max-width: 1100px) {
	.etg-newsletter {
		grid-template-columns: 145px minmax(210px, 0.9fr) minmax(310px, 1.25fr);
		padding-right: 25px;
	}

	.etg-newsletter__envelope {
		display: none;
	}

	.etg-newsletter__image {
		width: 145px;
	}

	.etg-newsletter__submit {
		min-width: 115px;
	}

	.etg-trust-strip {
		padding-right: 10px;
		padding-left: 10px;
	}
}

@media screen and (max-width: 850px) {
	.etg-newsletter {
		grid-template-columns: 125px 1fr;
		gap: 5px 18px;
		padding: 20px 25px;
	}

	.etg-newsletter__image-area {
		grid-row: 1 / 3;
		height: 145px;
	}

	.etg-newsletter__content {
		align-self: end;
	}

	.etg-newsletter__form {
		grid-column: 2;
		align-self: start;
		max-width: none;
		margin: 10px 0 0;
	}

	.etg-newsletter__eyebrow {
		font-size: 16px;
	}

	.etg-newsletter__title {
		font-size: 37px;
	}

	.etg-trust-strip {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 18px;
		padding: 22px 10px;
	}

	.etg-trust-item {
		justify-content: flex-start;
	}
}

/* =========================================================
   NEWSLETTER MOBILE
   ========================================================= */

@media screen and (max-width: 600px) {
	.etg-newsletter-section {
		padding-top: 5px;
	}

	.etg-newsletter {
		display: flex;
		flex-direction: column;
		align-items: center;
		min-height: 0;
		padding: 26px 18px 22px;
		text-align: center;
		border-radius: 14px;
	}

	.etg-newsletter::before {
		top: 20px;
		left: 50%;
		width: 230px;
		height: 230px;
		transform: translateX(-50%);
	}

	.etg-newsletter__image-area {
		order: 1;
		width: 100%;
		height: 115px;
		margin-bottom: 6px;
	}

	.etg-newsletter__image {
		right: 0;
		bottom: -5px;
		left: 0;
		width: 135px;
		height: 135px;
		margin: auto;
	}

	.etg-newsletter__bear-head {
		width: 95px;
		height: 90px;
	}

	.etg-newsletter__content {
		order: 2;
		padding: 0;
	}

	.etg-newsletter__eyebrow {
		font-size: 16px;
	}

	.etg-newsletter__title {
		font-size: 38px;
	}

	.etg-newsletter__description {
		font-size: 13px;
	}

	.etg-newsletter__form {
		order: 3;
		gap: 9px;
		width: 100%;
		margin-top: 18px;
	}

	.etg-newsletter__fields {
		display: grid;
		grid-template-columns: 1fr;
		gap: 9px;
		overflow: visible;
		background: transparent;
		border: 0;
		border-radius: 0;
		box-shadow: none;
	}

	.etg-newsletter__input {
		height: 49px;
		padding: 0 18px;
		background: #ffffff;
		border: 1px solid rgba(224, 192, 185, 0.8);
		border-radius: 999px;
		box-shadow: 0 5px 15px rgba(106, 70, 63, 0.06);
	}

	.etg-newsletter__submit {
		width: 100%;
		height: 49px;
		border-radius: 999px;
	}

	.etg-newsletter__consent {
		align-items: flex-start;
		margin: 2px 4px 0;
		text-align: left;
	}

	.etg-newsletter__consent span {
		max-width: none;
	}

	.etg-newsletter__envelope {
		display: none;
	}

	.etg-trust-strip {
		grid-template-columns: 1fr 1fr;
		gap: 18px 12px;
		padding: 22px 0;
	}

	.etg-trust-item {
		align-items: flex-start;
		justify-content: flex-start;
		gap: 8px;
	}

	.etg-trust-item__icon {
		width: 25px;
		height: 25px;
	}

	.etg-trust-item__text {
		font-size: 11px;
	}
}

@media screen and (max-width: 390px) {
	.etg-trust-strip {
		grid-template-columns: 1fr;
	}

	.etg-trust-item {
		align-items: center;
	}
}


body.etg-cart-drawer-open {
	overflow: hidden;
}

.etg-cart-drawer__overlay {
	position: fixed;
	z-index: 9997;
	inset: 0;
	background: rgba(43, 32, 29, 0.46);
}

.etg-cart-drawer {
	display: flex;
	flex-direction: column;
	position: fixed;
	z-index: 9998;
	top: 0;
	right: 0;
	width: min(460px, 100%);
	height: 100dvh;
	background: #fffaf7;
	border-left: 1px solid #f0e2de;
	box-shadow: -18px 0 45px rgba(43, 32, 29, 0.2);
}

.etg-cart-drawer[hidden],
.etg-cart-drawer__overlay[hidden] {
	display: none;
}

.etg-cart-drawer__header,
.etg-cart-drawer__footer {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 20px 24px;
	border-color: #eddfda;
}

.etg-cart-drawer__header {
	justify-content: space-between;
	min-height: 78px;
	background: #ffffff;
	border-bottom: 1px solid #eddfda;
}

.etg-cart-drawer__header h2 {
	margin: 0;
	color: #382f2d;
	font-size: 25px;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.etg-cart-drawer__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	background: #fff7f3;
	border: 1px solid #eadbd6;
	border-radius: 50%;
	color: var(--etg-pink-dark);
	font-size: 24px;
	line-height: 1;
	transition:
		background-color 0.2s ease,
		border-color 0.2s ease,
		transform 0.2s ease;
}

.etg-cart-drawer__close:hover {
	background: var(--etg-pink-light);
	border-color: #dfb8b6;
	transform: rotate(4deg);
}

.etg-cart-drawer__content {
	flex: 1;
	overflow-y: auto;
	padding: 24px;
}

.etg-cart-drawer__footer {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	padding-top: 18px;
	padding-bottom: max(18px, env(safe-area-inset-bottom));
	background: #ffffff;
	border-top: 1px solid #eddfda;
	box-shadow: 0 -10px 30px rgba(74, 49, 43, 0.06);
}

.etg-cart-drawer__footer .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0 16px;
	background: #ffffff;
	border: 1px solid var(--etg-pink);
	border-radius: 999px;
	color: var(--etg-pink-dark);
	font-size: 14px;
	font-weight: 800;
	text-align: center;
	text-decoration: none;
	transition:
		background-color 0.2s ease,
		box-shadow 0.2s ease,
		color 0.2s ease,
		transform 0.2s ease;
}

.etg-cart-drawer__footer .button:hover,
.etg-cart-drawer__footer .button:focus-visible {
	background: #fff2f0;
	box-shadow: 0 7px 18px rgba(166, 75, 84, 0.12);
	transform: translateY(-1px);
}

.etg-cart-drawer__footer .button.alt {
	background: var(--etg-pink);
	border-color: var(--etg-pink);
	color: #ffffff;
	box-shadow: 0 8px 20px rgba(166, 75, 84, 0.2);
}

.etg-cart-drawer__footer .button.alt:hover,
.etg-cart-drawer__footer .button.alt:focus-visible {
	background: var(--etg-pink-dark);
	border-color: var(--etg-pink-dark);
	color: #ffffff;
}

.etg-cart-drawer .woocommerce-mini-cart {
	margin: 16px 0;
	padding: 0;
	list-style: none;
}

.etg-cart-drawer .woocommerce-mini-cart-item {
	display: grid;
	grid-template-columns: 82px minmax(0, 1fr) 32px;
	gap: 14px;
	align-items: center;
	position: relative;
	margin-bottom: 12px;
	padding: 14px;
	background: #ffffff;
	border: 1px solid #f0e3df;
	border-radius: 16px;
	box-shadow: 0 8px 22px rgba(74, 49, 43, 0.05);
}

.etg-cart-drawer .woocommerce-mini-cart-item > a:not(.remove) {
	display: contents;
	color: #493b39;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.45;
	text-decoration: none;
}

.etg-cart-drawer .woocommerce-mini-cart-item img {
	grid-column: 1;
	grid-row: 1 / span 2;
	width: 82px;
	height: 100px;
	margin: 0;
	object-fit: cover;
	border-radius: 12px;
}

.etg-cart-drawer .woocommerce-mini-cart-item .remove {
	grid-column: 3;
	grid-row: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: #fff4f2;
	border-radius: 50%;
	color: #a53e45 !important;
	font-size: 20px;
	line-height: 1;
	text-decoration: none;
}

.etg-cart-drawer .woocommerce-mini-cart-item .quantity {
	grid-column: 2;
	grid-row: 2;
	color: #7b6d68;
	font-size: 13px;
	font-weight: 600;
}

.etg-cart-drawer .woocommerce-mini-cart__total {
	display: flex;
	justify-content: space-between;
	margin-top: 16px;
	padding: 18px 2px 4px;
	border-top: 1px solid #eadedb;
	color: #493b39;
	font-size: 17px;
	font-weight: 700;
}

.etg-cart-drawer .woocommerce-mini-cart__total strong {
	font-weight: 800;
}

.etg-cart-drawer .woocommerce-mini-cart__total .amount {
	color: var(--etg-pink-dark);
	font-weight: 800;
}

.etg-cart-drawer .woocommerce-mini-cart__buttons {
	display: none;
}

body.single-product .woocommerce-notices-wrapper {
	margin: 0 0 22px;
}

body.single-product .woocommerce-message,
body.single-product .woocommerce-error {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin: 0;
	padding: 15px 18px;
	background: #fff8f5;
	border: 1px solid #eadedb;
	border-radius: 14px;
	color: #493b39;
	list-style: none;
	box-shadow: 0 10px 26px rgba(91, 63, 55, 0.08);
}

body.single-product .woocommerce-message {
	border-left: 4px solid #849800;
}

body.single-product .woocommerce-error {
	border-left: 4px solid #b5454d;
}

body.single-product .woocommerce-message::before,
body.single-product .woocommerce-error::before {
	display: none;
}

body.single-product .woocommerce-message .button {
	flex: 0 0 auto;
	padding: 10px 16px;
	background: #e77b83;
	border-radius: 999px;
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
}

.etg-shipping-progress {
	margin: 0 0 18px;
	padding: 17px 18px;
	background: #fff8f5;
	border: 1px solid #eadedb;
	border-radius: 16px;
}

.etg-shipping-progress p {
	margin: 0 0 9px;
	color: #675753;
	font-size: 13px;
	font-weight: 700;
}

.etg-shipping-progress__track {
	overflow: hidden;
	height: 10px;
	background: #eadedb;
	border-radius: 999px;
}

.etg-shipping-progress__track span {
	display: block;
	height: 100%;
	background: #e77b83;
	border-radius: inherit;
	transition: width 0.25s ease;
}

.etg-shipping-progress.is-complete {
	background: #f4f9e8;
	border-color: #cddc9a;
}

.etg-shipping-progress.is-complete .etg-shipping-progress__track span {
	background: #849800;
}

.etg-commerce-page-heading {
	margin: 0 0 22px;
}

.etg-commerce-page-heading h1 {
	margin: 0 0 6px;
	font-size: clamp(28px, 4vw, 42px);
}

.etg-commerce-page-heading p {
	margin: 0;
	color: #7b6d68;
}

.etg-checkout-legal {
	margin: 0 0 22px;
	padding: 16px 18px;
	background: #fffaf7;
	border: 1px solid #eadedb;
	border-radius: 12px;
}

.etg-checkout-legal h2 {
	margin: 0 0 6px;
	font-size: 16px;
}

.etg-checkout-legal p,
.etg-checkout-legal ul {
	margin: 0;
	font-size: 13px;
}

.etg-checkout-legal ul {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 18px;
	padding: 10px 0 0 18px;
}

body.woocommerce-cart .wc-block-components-notice-banner,
body.woocommerce-checkout .wc-block-components-notice-banner,
body.woocommerce-cart .woocommerce-error,
body.woocommerce-checkout .woocommerce-error {
	border-radius: 10px;
}

@media screen and (max-width: 600px) {
	body.single-product .woocommerce-message,
	body.single-product .woocommerce-error {
		align-items: stretch;
		flex-direction: column;
	}

	.etg-cart-drawer__footer {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.etg-cart-drawer__header,
	.etg-cart-drawer__content,
	.etg-cart-drawer__footer {
		padding-right: 16px;
		padding-left: 16px;
	}

	.etg-cart-drawer__content {
		padding-top: 18px;
	}

	.etg-cart-drawer__footer .button {
		min-height: 48px;
		padding-right: 10px;
		padding-left: 10px;
		font-size: 13px;
	}

	.etg-cart-drawer .woocommerce-mini-cart-item {
		grid-template-columns: 72px minmax(0, 1fr) 30px;
		gap: 12px;
		padding: 12px;
	}

	.etg-cart-drawer .woocommerce-mini-cart-item img {
		width: 72px;
		height: 90px;
	}

	.etg-checkout-legal ul {
		display: block;
	}
}

