/*
Theme Name: ETG Commerce
Theme URI: https://etgsoft.com/
Author: ETG Soft
Author URI: https://etgsoft.com/
Description: ETG Soft tarafından geliştirilen özel WooCommerce teması.
Version: 1.0.2
Text Domain: etg-commerce
Requires at least: 6.5
Requires PHP: 8.1
License: Proprietary
*/

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

:root {
	--etg-pink: #ee858b;
	--etg-pink-dark: #cf6f75;
	--etg-pink-light: #fce8e5;
	--etg-cream: #fff9f6;
	--etg-text: #382f2d;
	--etg-muted: #897a77;
	--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;
}

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;
}

/* =========================================================
   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);
}

/* =========================================================
   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 {
	display: flex;
	align-items: center;
	width: 100%;
	height: 44px;
	overflow: hidden;
	background: #fffafa;
	border: 1px solid #eadedb;
	border-radius: 999px;
	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease;
}

.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: #aa9a97;
	opacity: 1;
}

.etg-header-search__field::-webkit-search-cancel-button {
	appearance: 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;
}

/* =========================================================
   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: none;
}

.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;
}

/* =========================================================
   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;
	}

	.etg-header-action:nth-child(2) {
		display: none;
	}

	.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;
	}
}
/* =========================================================
   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: 1fr 1.08fr;
	align-items: center;
	min-height: 570px;
}

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

.etg-hero__eyebrow {
	display: inline-block;
	margin-bottom: 16px;
	color: #e7787d;
	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 #ee858b;
	border-radius: 50%;
	color: #ee858b;
}

.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: #8a7975;
	font-size: 11px;
	line-height: 1.45;
}

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

@media screen and (max-width: 1200px) {
	.etg-hero__content {
		padding-left: 42px;
	}

	.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: 70px;
		padding-bottom: 0;
	}

	.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: 48px;
	}

	.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;
	}
}
