* {
	margin: 0;
	padding: 0;
	box-sizing: border-box
}

:root {
	--primary-color: #121117;
	--primary-color-rgb: 18, 17, 23;
	--primary-color-dark: #0a0a0e;
	--secondary-color: #333;
	--light-color: #f4f4f4;
	--dark-color: #222;
	--text-color: #333;
	--border-color: #e0e0e0;
	--transition: all 0.3s ease;
	--header-height: 0px;
	--red-color: #CF0C1F
}

body {
	font-family: Montserrat, sans-serif;
	line-height: 1.6;
	color: var(--text-color);
	background-color: #fff;
	padding-top: 0;
	transition: padding-top .3s ease
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px
}

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

ul {
	list-style: none
}

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

.btn {
	display: inline-block;
	padding: 12px 30px;
	border: none;
	border-radius: 4px;
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
	text-transform: uppercase;
	font-size: 14px
}

.btn-primary {
	background-color: var(--primary-color);
	color: #fff
}

.btn-primary:hover {
	background-color: #e63939
}

.section-title {
	position: relative;
	margin-bottom: 30px;
	padding-bottom: 15px;
	font-size: 28px;
	font-weight: 600;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, .1);
	text-align: center
}

.section-title::before {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: #777;
	margin-bottom: 5px;
	text-transform: uppercase;
	letter-spacing: 1px
}

.section-title::after {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	width: 80px;
	height: 3px;
	background-color: #121212;
	box-shadow: 1px 1px 3px rgba(0, 0, 0, .1)
}

.section-title.left-aligned {
	text-align: left
}

.section-title.left-aligned::before {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: #777;
	margin-bottom: 5px;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-align: left
}

.section-title.left-aligned::after {
	content: '';
	position: absolute;
	left: 0;
	transform: none
}

.header {
	background-color: #f8f8f8;
	border-bottom: 1px solid #e7e7e7;
	font-family: Poppins, sans-serif;
	transition: all .3s ease;
	background-color: #fff;
	z-index: 1000;
	position: sticky;
	top: 0;
	width: 100%;
	height: auto;
}

.top-header {
	position: relative;
	z-index: 900;
	background-color: var(--primary-color);
	color: #fff;
	padding: 10px 0;
	transition: all .3s ease;
	transform-origin: top;
	transform: translateY(0);
	height: auto;
	overflow: hidden;
}

body.scrolled .top-header {
	transform: translateY(0);
	height: auto;
	padding: 5px 0;
	overflow: hidden;
}

.desktop-only {
	display: block
}

@media (max-width:991px) {
	.desktop-only {
		display: none
	}

	.top-header {
		display: none
	}

	.main-header {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		z-index: 999;
		box-shadow: 0 2px 10px rgba(0, 0, 0, .1)
	}

	body {
		padding-top: 70px
	}
}

.mobile-top-header {
	display: none;
	justify-content: space-between;
	align-items: center;
	width: 100%
}

.mobile-phone {
	display: flex;
	align-items: center
}

.mobile-phone-number {
	display: flex;
	align-items: center;
	color: var(--primary-color);
	font-size: 14px
}

.mobile-phone-number i {
	margin-right: 5px;
	color: var(--primary-color);
	font-size: 16px
}

.mobile-catalog-link {
	color: var(--primary-color);
	font-size: 14px;
	text-decoration: none;
	padding: 5px 10px;
	border-radius: 3px
}

.main-header {
	background-color: #fff
}

@media (max-width:991px) {
	.header {
		position: sticky;
		top: 0;
		left: 0;
		right: 0;
		z-index: 999;
		box-shadow: 0 2px 10px rgba(0, 0, 0, .1)
	}

	.main-header {
		position: relative;
	}

	body {
		padding-top: 0;
	}
}

.nav-menu {
	position: relative;
	z-index: 1000;
	background-color: #fff;
	box-shadow: 0 2px 5px rgba(0, 0, 0, .05);
	transition: padding .3s ease;
}

.section-title {
	position: relative;
	margin-bottom: 30px;
	padding-bottom: 15px;
	font-size: 28px;
	font-weight: 600;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, .1)
}

.section-title::after {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	width: 80px;
	height: 3px;
	background-color: #121212;
	box-shadow: 1px 1px 3px rgba(0, 0, 0, .1)
}

.deals-wrapper {
	display: flex;
	background-color: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .1)
}

.newsletter-wrapper {
	display: flex;
	background-color: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .1)
}

.top-header {
	padding: 5px 0;
	background-color: #f8f8f8;
	border-bottom: 1px solid #e7e7e7;
	font-size: 13px;
	transition: padding .3s ease;
}

.top-header-container {
	display: flex;
	justify-content: space-between;
	align-items: center
}

.top-header-links {
	display: flex
}

.top-header-links a {
	margin-right: 15px;
	color: #333;
	font-size: 13px;
	text-decoration: none
}

.top-header-links a:hover {
	text-decoration: underline
}

.top-header-right {
	display: flex;
	align-items: center
}

.phone-number {
	display: flex;
	align-items: center;
	margin-right: 15px;
	color: #333;
	font-size: 13px;
	font-weight: 500
}

.phone-number i {
	margin-right: 5px
}

.catalog-link {
	color: #333;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 13px;
	background-color: #f5f5f5;
	padding: 5px 10px;
	border-radius: 4px;
	transition: all .2s ease
}

.catalog-link:hover {
	background-color: #e9e9e9
}

.main-header {
	padding: 10px 0;
	background-color: #fff;
	transition: padding .3s ease;
}

.main-header-container {
	display: flex;
	justify-content: space-between;
	align-items: center
}

.logo img {
	height: 50px;
	width: auto
}

.search-container {
	flex: 1;
	max-width: 800px;
	margin: 0 20px;
	position: relative
}

.search-container input {
	width: 100%;
	padding: 12px 15px 12px 40px;
	border: 1px solid #e7e7e7;
	border-radius: 30px;
	font-family: Poppins, sans-serif;
	font-size: 15px
}

.search-container button {
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	background: 0 0;
	border: none;
	color: #777;
	cursor: pointer
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 20px
}

.cart-icon,
.user-icon,
.wishlist-icon {
	position: relative;
	color: #333;
	font-size: 20px;
	display: flex;
	align-items: center;
	gap: 5px
}



.user-text {
	font-size: 14px;
	margin-left: 8px
}

.wishlist-icon {
	width: 40px;
	height: 40px;
	background-color: #f0f0f0;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color .2s ease
}

.wishlist-icon:hover {
	background-color: #e5e5e5
}

.wishlist-icon:hover i {
	color: #999
}

.user-icon {
	display: flex;
	align-items: center;
	background-color: #f0f0f0;
	border-radius: 30px;
	padding: 15px 15px;
	font-size: 16px;
	height: 40px;
	line-height: 40px;
	transition: background-color .2s ease
}

.user-icon:hover {
	background-color: #e5e5e5;
	color: #999
}

.user-icon:hover i {
	color: #999
}

.user-icon i {
	margin-right: 8px
}

.user-icon i,
.wishlist-icon i {
	margin: 0
}

.cart-icon {
	display: flex;
	align-items: center;
	gap: 5px;
	background-color: #121212;
	color: #fff;
	padding: 15px 15px;
	border-radius: 30px;
	font-size: 16px;
	height: 40px;
	line-height: 40px;
	transition: background-color .2s ease
}

.cart-icon:hover {
	background-color: #2a2a2a
}

.cart-icon i {
	margin-right: 5px
}

.nav-menu {
	background-color: #fff;
	padding: 10px 0;
	border-bottom: 1px solid #e7e7e7
}

.nav-menu-container {
	display: flex;
	justify-content: space-between;
	align-items: center
}

.nav-menu-container ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0
}

/* Alt Kategori Popup Stilleri */
.nav-menu-container .menu-item-with-submenu {
	position: relative;
}

.nav-menu-container .submenu-popup {
	display: block; /* Sürekli görünür */
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 250px;
	background-color: #fff;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	border-radius: 5px;
	z-index: 1000;
}

/* Hover kuralı kaldırıldı - alt kategoriler artık sürekli açık */

.nav-menu-container ul li {
	margin-right: 20px
}

.nav-menu-container ul li a {
	color: #333;
	font-weight: 500;
	text-decoration: none;
	padding: 5px 0;
	position: relative;
	font-size: 15px
}

.nav-menu-container ul li a:hover {
	color: #4caf50
}

.nav-menu-container ul li a:after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: 0;
	left: 0;
	background-color: #4caf50;
	transition: width .3s
}

.nav-menu-container ul li a:hover:after {
	width: 100%
}

@media (max-width:992px) {

	.phone-number,
	.top-header-links {
		display: none
	}

	.search-container {
		max-width: 400px
	}

	.nav-menu-container ul li {
		margin-right: 15px
	}
}

@media (max-width:768px) {
	.search-container {
		display: none
	}

	.nav-menu {
		display: none
	}

	.mobile-menu-btn {
		display: block
	}
}

.free-shipping {
	background-color: rgba(255, 61, 61, .2);
	color: #5a0f0f;
	padding: 6px 12px;
	border-radius: 20px;
	font-weight: 500;
	transition: background-color .3s ease;
	border: 1px solid rgba(255, 61, 61, .3);
	font-size: 13px;
	margin-left: auto
}

.mobile-menu-btn {
	display: none;
	background: 0 0;
	border: none;
	cursor: pointer
}

.mobile-menu-btn span {
	display: block;
	width: 25px;
	height: 3px;
	background-color: var(--dark-color);
	transition: var(--transition)
}

.hero {
	background-size: cover;
	background-position: center;
	height: 600px;
	display: flex;
	align-items: center;
	position: relative
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .3)
}

.hero-content {
	position: relative;
	z-index: 1;
	color: #fff;
	max-width: 600px
}

.hero-content h2 {
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 10px
}

.hero-content h1 {
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 15px;
	line-height: 1.2
}

.hero-content p {
	font-size: 18px;
	margin-bottom: 30px
}

.categories {
	padding: 40px 0;
	background-color: #f9f9f9
}

.categories-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px
}

.categories-navigation {
	display: flex;
	gap: 10px
}

.categories-navigation button {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: #fff;
	border: 1px solid #eaeaea;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: var(--transition);
	z-index: 10;
	box-shadow: 0 1px 3px rgba(0, 0, 0, .02)
}

.categories-navigation button:hover {
	background-color: var(--primary-color);
	color: #fff;
	box-shadow: 0 2px 5px rgba(0, 0, 0, .03)
}

.categories-container {
	position: relative;
	overflow-x: auto;
	width: 100%;
	box-sizing: border-box;
	margin: 0 auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth
}

.categories-container::-webkit-scrollbar {
	display: none
}

.categories-grid {
	margin-top: 20px;
	display: flex;
	gap: 20px;
	transition: transform .5s ease;
	width: max-content;
	padding-bottom: 10px;
	cursor: grab
}

.category-item {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	height: 300px;
	width: calc((100vw - 60px)/ 2);
	flex: 0 0 calc((100vw - 60px)/ 2);
	max-width: 270px;
	max-height: 400px;
	transition: opacity .3s ease, transform .3s ease;
	display: block;
	text-decoration: none;
	cursor: pointer;
	box-shadow: 0 2px 5px rgba(0, 0, 0, .03);
	margin-right: 0;
	transform-origin: center center;
	scroll-snap-align: start
}

@media (min-width:768px) {
	.category-item {
		width: calc((100vw - 80px)/ 3);
		flex: 0 0 calc((100vw - 80px)/ 3);
		height: 350px
	}
}

@media (min-width:1024px) {
	.category-item {
		width: calc((100vw - 100px)/ 4);
		flex: 0 0 calc((100vw - 100px)/ 4);
		max-width: 270px;
		height: 400px
	}

	.categories-container {
		max-width: 1150px
	}
}

.category-item img {
	transition: var(--transition);
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
	user-select: none;
	-webkit-user-drag: none;
	-khtml-user-drag: none;
	-moz-user-drag: none;
	-o-user-drag: none
}

.category-item:hover img {
	transform: scale(1.05);
	border-radius: 8px
}

.category-item:hover .category-name {
	opacity: 1
}

.category-item:hover {
	transform: translateY(-5px)
}

.category-name {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #fff;
	padding: 12px 25px;
	border-radius: 30px;
	font-weight: 700;
	font-size: 14px;
	width: 80%;
	text-align: center;
	box-shadow: 0 1px 3px rgba(0, 0, 0, .02);
	color: var(--primary-color);
	transition: var(--transition);
	opacity: 0.9;
	font-family: Poppins, sans-serif;
	letter-spacing: .5px;
	text-transform: uppercase
}

.bestsellers {
	padding: 60px 0;
	position: relative
}

.product-info {
	padding: 15px 0;
	text-align: center;
}

.product-title {
	font-family: Poppins, sans-serif;
	font-weight: 700;
	font-size: 16px;
	margin-bottom: 8px;
	color: var(--primary-color);
	letter-spacing: .5px;
	text-align: center;
}

.product-price {
	font-family: Montserrat, sans-serif;
	font-weight: 700;
	font-size: 18px;
	color: #cf0c1f;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 5px;
}

.product-price .old-price {
	text-decoration: line-through;
	color: #999;
	font-size: 15px;
	font-weight: 400;
}

.product-price .discount-price {
	font-family: Montserrat, sans-serif;
	font-weight: 700;
	font-size: 18px;
	color: #cf0c1f;
}

.products-grid {
	margin-top: 40px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.product-item {
	position: relative;
	overflow: hidden;
	transition: var(--transition);
}

.product-item:hover {
	transform: translateY(-5px);
}

.product-badges {
	position: absolute;
	top: 10px;
	left: 10px;
	display: flex;
	gap: 5px;
	z-index: 5;
	transition: opacity 0.3s ease;
}

.product-discount {
	background-color: #cf0c1f;
	color: #fff;
	padding: 5px 10px;
	border-radius: 4px;
	font-weight: 600;
	font-size: 15px;
}

.product-new {
	background-color: var(--primary-color);
	color: #fff;
	padding: 5px 10px;
	border-radius: 4px;
	font-weight: 600;
	font-size: 15px;
}

.product-img {
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, .03);
	position: relative;
	aspect-ratio: 1/1;
	width: 100%
}

.product-img .hover-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity .5s ease
}

.product-img:hover .hover-img {
	opacity: 1
}

.product-img:hover img:not(.hover-img) {
	opacity: 0
}

.product-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity .5s ease, transform .5s ease;
	border-radius: 8px
}

.product-item:hover .product-img img {
	transform: scale(1.05)
}

.product-actions {
	position: absolute;
	bottom: -50px;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	transition: bottom .3s ease;
	z-index: 2
}

.product-item:hover .product-actions {
	bottom: 20px
}

.product-item:hover .product-badges {
	opacity: 0;
}

.add-to-cart {
	background-color: var(--red-color);
	color: #fff;
	border: none;
	padding: 12px 20px;
	border-radius: 4px;
	font-family: Poppins, sans-serif;
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
	font-size: 14px;
	text-align: center;
	box-shadow: 0 1px 3px rgba(0, 0, 0, .02);
	width: 80%;
	text-transform: uppercase
}

.add-to-cart:hover {
	background-color: #fff;
	color: #000
}

.wishlist-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	background-color: #fff;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	opacity: 0;
	transition: opacity .3s ease;
	z-index: 2;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .02)
}

.product-item:hover .wishlist-btn {
	opacity: 1
}

.wishlist-btn i {
	color: var(--primary-color);
	font-size: 16px;
	transition: color .3s ease
}

.wishlist-btn:hover i {
	color: #e74c3c
}

.product-info {
	padding: 15px 0;
	margin-top: 10px
}

.product-title {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 8px
}

.product-price {
	font-weight: 700;
	color: #cf0c1f;
	font-size: 18px;
	display: flex;
	align-items: center
}

.product-price span {
	font-weight: 400;
	font-size: 13px
}

.deals {
	padding: 80px 0;
	background-color: #f9f9f9
}

.deals-wrapper {
	display: flex;
	align-items: center;
	background-color: #f9f9f9;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 0 10px rgba(0, 0, 0, .03);
	position: relative
}

.deals-content {
	flex: 1;
	padding: 60px 40px 40px;
	position: relative;
	z-index: 5
}

.deals-content .section-title {
	text-align: left
}

.deals-content .section-title::after {
	left: 0;
	transform: none
}

.deals-content p {
	margin-bottom: 30px
}

.countdown {
	display: flex;
	gap: 15px;
	margin: 20px 0 30px
}

.countdown-item {
	margin-right: 20px;
	text-align: center
}

.countdown-item .number {
	display: block;
	width: 70px;
	height: 70px;
	background-color: #cf0c1f;
	color: #fff;
	border-radius: 8px;
	font-size: 28px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 5px;
	box-shadow: 0 5px 15px rgba(207, 12, 31, .3)
}

.countdown-item .text {
	font-size: 14px;
	color: var(--text-color)
}

.deals-image {
	flex: 1;
	height: 500px
}

.deals-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.customer-photos {
	padding: 60px 0 0 0;
	background-color: #fff
}

.customer-photos .section-title {
	padding: 0 15px;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	font-size: 32px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	position: relative;
	display: block;
	margin-bottom: 40px;
	text-align: center
}

.customer-photos .section-title::before {
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 14px;
	color: #999;
	font-weight: 600;
	letter-spacing: 1px
}

.customer-photos .section-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background-color: var(--primary-color)
}

.section-subtitle {
	padding: 0 15px;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	color: #666;
	margin-top: -30px;
	margin-bottom: 30px;
	font-size: 16px;
	font-weight: 400;
	font-style: italic
}

.customer-photos .container {
	max-width: 100%;
	padding: 0
}

.customer-photos-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 400px;
	gap: 0;
	margin-top: 30px;
	width: 100%
}

.photo-item {
	position: relative;
	overflow: hidden;
	border-radius: 0;
	transition: all .3s ease
}

.photo-item-large {
	grid-column: span 2;
	grid-row: span 2;
	height: 800px
}

.photo-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease
}

.photo-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 20px;
	background: linear-gradient(to top, rgba(0, 0, 0, .7) 0, rgba(0, 0, 0, 0) 100%);
	color: #fff;
	opacity: 0;
	transition: opacity .3s ease;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
	height: 100%
}

.photo-tag {
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 8px
}

.photo-link {
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	padding: 5px 0;
	position: relative
}

.photo-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #fff;
	transition: width .3s ease
}

.photo-link:hover::after {
	width: 100%
}

.photo-item:hover img {
	transform: scale(1.08)
}

.photo-item:hover .photo-overlay {
	opacity: 1
}

@media (max-width:992px) {
	.customer-photos-grid {
		grid-template-columns: repeat(3, 1fr);
		grid-auto-rows: 300px
	}

	.photo-item-large {
		height: 600px
	}
}

@media (max-width:768px) {
	.customer-photos-grid {
		display: block;
		font-size: 0
	}

	.photo-item {
		font-size: 16px
	}

	.photo-item-large {
		width: 100%;
		height: 400px;
		display: block
	}

	.customer-photos {
		padding: 40px 0 0 0
	}

	.photo-item:not(.photo-item-large) {
		display: inline-block;
		width: 50%;
		height: 300px;
		margin: 0;
		padding: 0;
		box-sizing: border-box
	}

	.photo-overlay {
		opacity: 0;
		background: linear-gradient(to top, rgba(0, 0, 0, .7) 0, rgba(0, 0, 0, 0) 100%);
		height: 100%;
		top: 0;
		bottom: 0;
		display: flex;
		flex-direction: column;
		justify-content: flex-end
	}

	.photo-item:hover .photo-overlay {
		opacity: 1
	}

	.photo-item:hover img {
		transform: scale(1.05)
	}
}

@media (max-width:576px) {
	.photo-item-large {
		height: 400px
	}

	.photo-item:not(.photo-item-large) {
		height: 200px
	}

	.customer-photos {
		padding: 30px 0 0 0
	}

	.photo-tag {
		font-size: 12px;
		margin-bottom: 5px
	}

	.photo-link {
		font-size: 14px
	}

	.photo-overlay {
		padding: 15px
	}

	.photo-item .photo-overlay {
		opacity: 1;
		height: 100%;
		top: 0;
		bottom: 0;
		background: linear-gradient(to top, rgba(0, 0, 0, .7) 0, rgba(0, 0, 0, .4) 100%)
	}
}

.instagram {
	padding: 80px 0
}

.instagram-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px
}

.instagram-item {
	position: relative;
	overflow: hidden;
	border-radius: 8px
}

.instagram-item img {
	transition: var(--transition)
}

.instagram-item:hover img {
	transform: scale(1.05)
}

.features {
	padding: 60px 0;
	background-color: #f9f9f9
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px
}

.feature-item {
	text-align: center
}

.feature-item i {
	font-size: 36px;
	color: var(--primary-color);
	margin-bottom: 15px
}

.feature-item h3 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px
}

.feature-item p {
	font-size: 14px;
	color: #666
}

.newsletter-section {
	padding: 80px 0
}

.newsletter-wrapper {
	display: flex;
	align-items: center;
	background-color: #f9f9f9;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 0 10px rgba(0, 0, 0, .03);
	position: relative
}

.newsletter-image {
	flex: 1;
	height: 450px;
	overflow: hidden;
	position: relative
}

.newsletter-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	margin: 0;
	padding: 0;
	transition: transform .5s ease
}

.newsletter-image:hover img {
	transform: scale(1.05)
}

.newsletter-content {
	flex: 1;
	padding: 60px 40px 40px;
	position: relative;
	z-index: 5;
	text-align: left
}

.newsletter-content .section-title {
	text-align: left
}

.newsletter-content .section-title::after {
	left: 0;
	transform: none
}

.newsletter-label {
	display: inline-block;
	background-color: rgba(18, 17, 23, .08);
	color: var(--primary-color);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.5px;
	padding: 8px 15px;
	border-radius: 30px;
	margin-bottom: 15px;
	width: fit-content
}

.newsletter-content h3 {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 15px;
	line-height: 1.3;
	color: var(--primary-color)
}

.newsletter-content p {
	color: #666;
	margin-bottom: 30px;
	font-size: 16px;
	line-height: 1.6
}

.newsletter-form {
	margin-bottom: 15px;
	display: flex;
	gap: 15px
}

.form-group {
	position: relative;
	flex: 1
}

.form-group i {
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	color: #999
}

.newsletter-form input {
	width: 100%;
	padding: 16px 20px 16px 50px;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	font-size: 16px;
	background-color: #f9f9f9;
	transition: all .3s ease
}

.newsletter-form input:focus {
	border-color: var(--primary-color);
	background-color: #fff;
	box-shadow: 0 5px 15px rgba(0, 0, 0, .05)
}

.btn-subscribe {
	background: linear-gradient(135deg, var(--primary-color) 0, #000 100%);
	color: #fff;
	border: none;
	border-radius: 30px;
	padding: 0 35px;
	height: 50px;
	font-weight: 600;
	letter-spacing: 1.5px;
	cursor: pointer;
	transition: all .3s ease;
	white-space: nowrap;
	position: relative;
	overflow: hidden;
	z-index: 1
}

.btn-subscribe::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #000 0, var(--primary-color) 100%);
	z-index: -1;
	opacity: 0;
	transition: opacity .3s ease
}

.btn-subscribe:hover::before {
	opacity: 1
}

.btn-subscribe:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, .15)
}

.newsletter-privacy {
	color: #999;
	font-size: 13px
}

.newsletter-privacy a {
	color: var(--primary-color);
	text-decoration: underline;
	transition: color .3s ease
}

.newsletter-privacy a:hover {
	color: #000
}

@media (max-width:992px) {
	.newsletter-wrapper {
		flex-direction: column
	}

	.newsletter-image {
		width: 100%;
		height: 300px
	}

	.newsletter-content {
		width: 100%;
		padding: 40px 30px
	}
}

@media (max-width:768px) {
	.newsletter-section {
		padding: 40px 0
	}

	.newsletter-content {
		padding: 30px 20px
	}

	.newsletter-form {
		flex-direction: column
	}

	.btn-subscribe {
		width: 100%;
		padding: 16px 30px;
		margin-top: 10px
	}
}

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

@media (max-width:992px) {
	.container {
		max-width: 768px
	}

	.categories-grid,
	.features-grid,
	.products-grid {
		grid-template-columns: repeat(3, 1fr)
	}

	.footer-top {
		grid-template-columns: 1fr 1fr
	}

	.footer-logo {
		grid-column: 1/-1;
		margin-bottom: 30px
	}
}

@media (max-width:768px) {
	.container {
		max-width: 576px
	}

	.main-nav {
		display: none
	}

	.mobile-menu-btn {
		display: block
	}

	.hero-content h1 {
		font-size: 36px
	}

	.categories-grid,
	.products-grid {
		grid-template-columns: repeat(2, 1fr)
	}

	.deals-wrapper {
		flex-direction: column
	}

	.deals-content,
	.deals-image {
		width: 100%
	}

	.deals-image {
		height: 300px
	}

	.features-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px
	}

	.footer-top {
		grid-template-columns: 1fr;
		gap: 30px
	}

	.footer-nav {
		grid-template-columns: 1fr 1fr
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center
	}

	.copyright {
		margin-bottom: 15px
	}

	.social-links {
		margin-bottom: 15px
	}
}

@media (max-width:576px) {
	.products-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px
	}

	.hero-content h1 {
		font-size: 28px
	}

	.hero-content h2 {
		font-size: 18px
	}

	.hero-content p {
		font-size: 16px
	}

	.section-title {
		font-size: 24px
	}

	.countdown {
		display: flex;
		flex-wrap: nowrap;
		gap: 5px;
		justify-content: flex-start
	}

	.countdown-item {
		margin-right: 5px;
		margin-bottom: 0
	}

	.countdown-item .number {
		width: 50px;
		height: 50px;
		font-size: 18px
	}

	.countdown-item .text {
		font-size: 12px
	}

	.footer-nav {
		grid-template-columns: 1fr
	}
}

.hero-slider {
	position: relative;
	overflow: hidden;
	height: 600px
}

@media (max-width: 768px) {
	.hero-slider {
		height: 600px
	}
}

.slider-container {
	position: relative;
	height: 100%
}

.slider-wrapper {
	height: 100%;
	position: relative
}

.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity .3s ease-in-out;
	display: flex;
	align-items: center;
	visibility: hidden;
	will-change: opacity;
}

.desktop-slide,
.mobile-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

.desktop-slide img,
.mobile-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	will-change: transform;
	transform: translateZ(0);
	backface-visibility: hidden;
}

.desktop-slide {
	display: block;
}

.mobile-slide {
	display: none;
}

@media (max-width: 768px) {
	.desktop-slide {
		display: none;
	}
	
	.mobile-slide {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		overflow: hidden;
	}
	
	.mobile-slide img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
	}
}

.slide.active {
	opacity: 1;
	z-index: 1;
	visibility: visible
}

.slide .hero-content h1,
.slide .hero-content h2,
.slide .hero-content p {
	color: #333;
	text-shadow: 0 1px 3px rgba(255, 255, 255, .5);
	font-weight: 700
}

.slider-navigation {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 50
}

.nav-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: 0 0;
	border: none;
	padding: 0;
	cursor: pointer;
	pointer-events: auto;
	z-index: 100
}

.prev-slide {
	left: 20px
}

.next-slide {
	right: 20px
}

.nav-arrow {
	width: 50px;
	height: 50px;
	background-color: rgba(255, 255, 255, .8);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .3s ease;
	box-shadow: 0 2px 10px rgba(0, 0, 0, .1)
}

.nav-arrow i {
	color: #333;
	font-size: 18px
}

.nav-btn:hover .nav-arrow {
	background-color: #fff;
	transform: scale(1.1)
}

.slider-dots {
	position: absolute;
	bottom: 20px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	gap: 3px;
	z-index: 90;
	background-color: rgba(0, 0, 0, .3);
	width: fit-content;
	margin: 0 auto;
	padding: 6px 12px;
	border-radius: 20px
}

.dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, .5);
	cursor: pointer;
	transition: background-color .3s, transform .2s;
	margin: 0
}

.dot:hover {
	transform: scale(1.2)
}

.dot.active {
	background-color: #fff;
	transform: scale(1.2)
}

.nav-menu ul.desktop-menu li a {
	position: relative
}

.nav-menu ul.desktop-menu li a:hover {
	color: var(--red-color);
	transition: color .3s ease
}

.nav-menu ul.desktop-menu li a::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -5px;
	left: 0;
	background-color: var(--red-color);
	transition: width .3s ease
}

.nav-menu ul.desktop-menu li a:hover::after {
	width: 100%
}

.header-left {
	display: flex;
	align-items: center;
	position: relative
}

.logo {
	display: flex;
	align-items: center;
	justify-content: flex-start
}

.logo img {
	display: block;
	margin: auto 0;
	max-height: 100%
}

.mobile-menu-btn {
	display: none;
	cursor: pointer;
	width: 30px;
	height: 24px;
	position: relative;
	margin-left: 15px;
	padding: 0;
	text-align: center;
	align-self: center
}

@media (max-width:991px) {
	.desktop-only {
		display: none
	}

	.mobile-top-header {
		display: flex
	}

	.header-left {
		display: flex;
		align-items: center;
		gap: 15px
	}

	.mobile-menu-btn {
		display: flex;
		flex-direction: column;
		justify-content: center
	}

	.header-actions {
		display: none
	}

	.desktop-menu {
		display: none
	}

	.free-shipping {
		display: none
	}

	.header-left {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		height: 60px
	}

	.logo {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		margin: 0
	}

	.logo img {
		height: 35px;
		display: block;
		margin: auto 0
	}

	.main-header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 1000;
		box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
		height: 60px;
		display: flex;
		align-items: center
	}

	body {
		padding-top: 60px
	}
}

.mobile-menu-btn span {
	display: block;
	width: 100%;
	height: 3px;
	background-color: var(--primary-color);
	margin: 4px 0;
	border-radius: 2px;
	transition: all .3s ease
}

.mobile-menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .7);
	z-index: 1000;
	display: none;
	opacity: 0;
	transition: opacity .3s ease
}

.mobile-menu-overlay.active {
	opacity: 1;
	display: block
}

.mobile-menu {
	position: fixed;
	top: 0;
	right: -300px;
	width: 300px;
	height: 100%;
	background-color: #fff;
	z-index: 1001;
	box-shadow: -3px 0 15px rgba(0, 0, 0, .1);
	transition: right .3s ease;
	overflow-y: auto;
	display: none;
	padding-bottom: 20px
}

.mobile-menu.active {
	right: 0
}

@media (max-width:991px) {
	.mobile-menu {
		display: block
	}

	.mobile-menu-overlay {
		display: block
	}
}

.mobile-menu-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px;
	border-bottom: none;
	background: #fff;
	position: relative
}

.mobile-menu-logo {
	margin-bottom: 0;
	position: relative;
	z-index: 5
}

.mobile-menu-logo img {
	height: 35px
}

.mobile-menu-close {
	font-size: 18px;
	cursor: pointer;
	color: #666;
	position: absolute;
	top: 15px;
	right: 15px;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .2s ease
}

.mobile-menu-close:hover {
	color: #333
}

.mobile-menu-content {
	padding: 15px;
	display: flex;
	flex-direction: column;
	gap: 15px
}

.mobile-search {
	margin-bottom: 10px
}

.mobile-search form {
	display: flex;
	position: relative
}

.mobile-search input {
	width: 100%;
	padding: 10px 35px 10px 15px;
	border: 1px solid #eee;
	border-radius: 4px;
	font-size: 14px;
	background-color: #fff;
	transition: all .2s ease
}

.mobile-search input:focus {
	outline: 0;
	border-color: var(--primary-color)
}

.mobile-search button {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	background: 0 0;
	border: none;
	color: #999;
	cursor: pointer;
	font-size: 16px;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .3s ease
}

.mobile-search button:hover {
	color: var(--primary-color)
}

.mobile-menu-categories {
	display: flex;
	flex-direction: column;
	gap: 5px
}

.mobile-menu-categories h3 {
	font-size: 15px;
	color: #333;
	font-weight: 600
}

/* Eski mobile-category-link CSS'i kaldırıldı - yeni wrapper yapısı kullanılıyor */

/* Mobil alt kategoriler */
.mobile-category-item {
	position: relative
}

/* Wrapper kaldırıldı - artık gerekli değil */

.mobile-category-link {
	display: block;
	padding: 12px 15px;
	color: #333;
	font-weight: 500;
	transition: all .2s ease;
	/* border-bottom kaldırıldı - ana kategori ile alt kategori arasında çizgi yok */
}

.mobile-category-link:hover {
	color: var(--primary-color)
}

/* Toggle buton kaldırıldı - artık gerekli değil */

.mobile-subcategories {
	max-height: none; /* Sürekli açık */
	overflow: visible;
	background-color: transparent;
	border-left: none;
	margin-left: 0
}

.mobile-subcategory-link {
	display: block;
	padding: 8px 15px 8px 25px; /* Sol taraftan boşluk azaltıldı */
	color: #666;
	font-size: 14px;
	transition: all 0.2s ease;
	border-bottom: none;
	position: relative;
	background-color: transparent
}

.mobile-subcategory-link:last-child {
	border-bottom: none
}

/* Bullet point kaldırıldı */

.mobile-subcategory-link:hover {
	color: var(--primary-color);
	background-color: transparent;
	padding-left: 27px /* Hafif sağa kayma */
}

.mobile-user-actions {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin-bottom: 10px
}

.mobile-user-actions h3 {
	font-size: 15px;
	color: #333;
	font-weight: 600
}

.mobile-user-action.login {
	display: flex;
	align-items: center;
	padding: 12px 15px;
	color: #333;
	font-size: 14px;
	font-weight: 600;
	transition: all .2s ease;
	border-bottom: 1px solid #eee;
	letter-spacing: .5px
}

.mobile-user-action.login i {
	margin-right: 10px;
	font-size: 14px;
	color: var(--primary-color)
}

.mobile-user-action.login:hover {
	color: var(--primary-color)
}

.mobile-user-action {
	display: flex;
	align-items: center;
	padding: 12px 15px;
	color: #333;
	font-size: 14px;
	font-weight: 500;
	transition: all .2s ease;
	border-bottom: 1px solid #eee
}

.mobile-user-action:last-child {
	border-bottom: none
}

.mobile-user-action i {
	margin-right: 10px;
	font-size: 14px;
	width: 20px;
	text-align: center;
	color: var(--primary-color)
}

.mobile-user-action:hover {
	color: var(--primary-color)
}

.mobile-contact {
	margin-top: 10px
}

.mobile-contact h3 {
	font-size: 15px;
	margin-bottom: 10px;
	color: #333;
	font-weight: 600
}

.mobile-contact ul {
	display: flex;
	flex-direction: column;
	gap: 10px
}

.mobile-contact ul li {
	transition: all .2s ease;
	margin-bottom: 5px;
	border-bottom: 1px solid #eee
}

.mobile-contact ul li:last-child {
	border-bottom: none
}

.mobile-contact ul li:hover {
	color: var(--primary-color)
}

.mobile-contact ul li a {
	color: #333;
	display: flex;
	align-items: center;
	padding: 12px 15px;
	font-weight: 500;
	font-size: 14px
}

.mobile-contact ul li a i {
	margin-right: 12px;
	color: var(--primary-color);
	width: 20px;
	text-align: center;
	font-size: 16px
}

.mobile-social {
	display: flex;
	justify-content: flex-start;
	gap: 10px;
	margin-top: 10px;
	padding: 0 15px
}

.mobile-social a {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #666;
	transition: all .2s ease;
	font-size: 16px;
	margin: 0 5px
}

.mobile-social a:hover {
	color: var(--primary-color)
}

.mobile-menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .5);
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: opacity .3s ease;
	display: none
}

.mobile-menu-overlay.active {
	opacity: 1;
	visibility: visible
}

@media (min-width:992px) {
	.header {
		position: sticky;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 1000;
		background-color: #fff;
		transition: all .3s ease
	}

	.header:not(.scrolled) {
		box-shadow: none
	}

	@keyframes slideDown {
		from {
			transform: translateY(-100%);
			opacity: 0
		}

		to {
			transform: translateY(0);
			opacity: 1
		}
	}

	@keyframes fadeOut {
		from {
			opacity: 1;
			max-height: 50px
		}

		to {
			opacity: 0;
			max-height: 0
		}
	}
}

.footer {
	background-image: url(../images/footerbg.png);
	background-color: var(--primary-color);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #fff;
	padding: 60px 0 0;
	font-family: Poppins, sans-serif;
	position: relative
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1
}

.footer .container {
	position: relative;
	z-index: 2
}

.footer-main {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 40px
}

.footer-column {
	flex: 1;
	padding: 0 15px;
	margin-bottom: 30px;
	min-width: 250px
}

.footer-about {
	flex: 1.5
}

.footer-logo {
	margin-bottom: 20px
}

.footer-logo img {
	max-width: 150px;
	height: auto
}

.footer-description {
	color: #b0b0b0;
	line-height: 1.7;
	margin-bottom: 20px;
	font-size: 14px
}

.footer-social {
	display: flex;
	gap: 15px
}

.footer-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background-color: rgba(255, 255, 255, .1);
	border-radius: 50%;
	color: #fff;
	transition: all .3s ease
}

.footer-social a:hover {
	background-color: var(--red-color);
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, .3)
}

.footer-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 25px;
	position: relative;
	padding-bottom: 10px
}

.footer-title::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 40px;
	height: 2px;
	background-color: #fff
}

.footer-links {
	list-style: none
}

.footer-links li {
	margin-bottom: 12px
}

.footer-links a {
	color: #b0b0b0;
	transition: all .3s ease;
	font-size: 14px;
	position: relative;
	padding-left: 15px
}

.footer-links a::before {
	content: '›';
	position: absolute;
	left: 0;
	top: 0;
	font-size: 16px;
	transition: transform .3s ease
}

.footer-links a:hover {
	color: #fff;
	padding-left: 20px
}

.footer-links a:hover::before {
	transform: translateX(5px)
}

.footer-contact-info {
	list-style: none
}

.footer-contact-info li {
	display: flex;
	align-items: flex-start;
	margin-bottom: 15px;
	font-size: 14px
}

.footer-contact-info i {
	margin-right: 10px;
	color: #fff;
	font-size: 16px;
	margin-top: 3px;
	transition: color .3s ease
}

.contact-link {
	color: #b0b0b0;
	text-decoration: none;
	transition: color .3s ease
}

.contact-link:hover {
	color: var(--red-color)
}

.footer-contact-info li:hover i {
	color: var(--red-color)
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, .1);
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap
}

.copyright {
	color: #b0b0b0;
	font-size: 14px
}

.footer-bottom-links {
	display: flex;
	gap: 20px
}

.footer-bottom-links a {
	color: #b0b0b0;
	font-size: 14px;
	transition: color .3s ease
}

.footer-bottom-links a:hover {
	color: #fff
}

@media (max-width:992px) {
	.footer-column {
		flex: 0 0 calc(50% - 30px)
	}

	.footer-about {
		flex: 0 0 100%
	}

	.mobile-menu-btn {
		display: block
	}

	.nav-menu ul.desktop-menu {
		display: none
	}

	.nav-menu-container {
		display: flex;
		justify-content: space-between;
		align-items: center
	}

	.free-shipping {
		flex: 1;
		text-align: center
	}
}

@media (max-width:768px) {
	.footer {
		padding: 40px 0 0
	}

	.footer-column {
		flex: 0 0 100%
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center;
		gap: 15px
	}

	.footer-bottom-links {
		justify-content: center
	}

	.top-header-links {
		display: none
	}

	.top-header-container {
		justify-content: center
	}

	.main-header-container {
		flex-wrap: wrap
	}

	.logo {
		width: 100%;
		text-align: center
	}

	.search-container {
		flex: 1 0 100%;
		margin-bottom: 15px
	}

	.header-actions {
		width: 100%;
		justify-content: space-around
	}
}