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

body {
	font-family: 'Plus Jakarta Sans', sans-serif;
	background: #ffffff;
	color: #1a1e2b;
	line-height: 1.5;
}

a {
	color: #1a1e2b;
	text-decoration: none;
	transition: all 0.2s ease;
}

a:hover {
	color: #f0b90b;
}
#content{ padding-bottom: 0px !important }
.breadcrumb{
	display: none !important;
}
#menu{
	margin-bottom: 20px;
}
header {
	background: #ffffff;
	padding: 20px 0;
	border-bottom: 1px solid #eef2f6;
	position: sticky;
	top: 0;
	z-index: 1030;
}

html,
body {
	height: 100%;
	margin: 0;
	padding: 0;
}

#container {
	position: relative;
	z-index: auto;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

main {
	position: relative;
	z-index: 2;
	flex: 1 0 auto;
}

header {
	position: relative;
	z-index: 100;
}

footer {
	position: relative;
	z-index: 50 !important;
	flex-shrink: 0;
	background: white;
	box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
}


/* Logo */
#logo img {
	width: auto;
	transition: all 0.2s ease;
}

#logo img:hover {
	opacity: 0.9;
}

/* Search */
#search {
	width: 100%;
}

#search .input-group {
	background: #f8fafd;
	border-radius: 50px;
	overflow: hidden;
	border: 1px solid #eef2f6;
	transition: all 0.2s ease;
}

#search .input-group:focus-within {
	border-color: #f0b90b;
	background: #ffffff;
	box-shadow: 0 4px 12px rgba(240, 185, 11, 0.08);
}

#search input {
	background: transparent;
	border: none;
	color: #1a1e2b;
	padding: 12px 20px;
	font-size: 0.95rem;
	font-weight: 400;
}

#search input::placeholder {
	color: #a0aec0;
	font-weight: 300;
}

#search input:focus {
	outline: none;
	box-shadow: none;
}

#search button {
	background: transparent;
	border: none;
	color: #f0b90b;
	padding: 0 25px;
	font-weight: 500;
	transition: all 0.2s ease;
}

#search button:hover {
	color: #1a1e2b;
	background: transparent;
}

/* Header Icons - Hesap ve Sepet */
.header-icons {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 15px;
}

.header-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: #f8fafd;
	border: 1px solid #eef2f6;
	border-radius: 50%;
	color: #1a1e2b;
	font-size: 1.2rem;
	transition: all 0.2s ease;
	position: relative;
}

.header-icon:hover {
	border-color: #f0b90b;
	background: #ffffff;
	color: #f0b90b;
	transform: translateY(-2px);
}

.header-icon .badge {
	position: absolute;
	top: -5px;
	right: -5px;
	background: #f0b90b;
	color: #1a1e2b;
	font-size: 0.7rem;
	font-weight: 700;
	min-width: 20px;
	height: 20px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 5px;
	border: 2px solid #ffffff;
}

/* Sepet Özel (OpenCart'ın cart div'i için) */
#cart {
	background: transparent;
	margin: 0;
}

#cart .dropdown-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: #f8fafd;
	border: 1px solid #eef2f6;
	border-radius: 50%;
	color: #1a1e2b;
	font-size: 1.2rem;
	transition: all 0.2s ease;
	padding: 0;
}

#cart .dropdown-toggle:hover {
	border-color: #f0b90b;
	background: #ffffff;
	color: #f0b90b;
	transform: translateY(-2px);
}

#cart .dropdown-toggle i {
	color: inherit;
	font-size: 1.2rem;
	margin: 0;
}

#cart .badge {
	position: absolute;
	top: -5px;
	right: -5px;
	background: #f0b90b;
	color: #1a1e2b;
	font-size: 0.7rem;
	font-weight: 700;
	min-width: 20px;
	height: 20px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 5px;
	border: 2px solid #ffffff;
}

/* Hesap Dropdown - Sadece tıklanınca açılır */
.account-dropdown {
	position: relative;
}

.account-dropdown .dropdown-menu {
	position: absolute;
	top: 100%;
	right: 0;
	margin-top: 10px;
	min-width: 220px;
	background: #ffffff;
	border: 1px solid #eef2f6;
	border-radius: 16px;
	box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
	padding: 8px;
	display: none;
	z-index: 1050;
}

.account-dropdown .dropdown-menu.show {
	display: block;
	animation: fadeIn 0.2s ease forwards;
}

.account-dropdown .dropdown-item {
	color: #4a5568;
	padding: 10px 16px;
	border-radius: 12px;
	font-size: 0.9rem;
	font-weight: 500;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	gap: 10px;
}

.account-dropdown .dropdown-item i {
	width: 20px;
	color: #f0b90b;
	font-size: 1rem;
}

.account-dropdown .dropdown-item:hover {
	background: #f8fafd;
	color: #f0b90b;
	transform: translateX(3px);
}

.account-dropdown .dropdown-divider {
	border-top: 1px solid #eef2f6;
	margin: 8px 0;
}

/* Animasyon */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-8px);
	}

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

/* Responsive */
@media (max-width: 768px) {
	header {
		padding: 15px 0;
	}

	#logo {
		text-align: center;
		margin-bottom: 15px;
	}

	#logo img {
		max-height: 40px;
	}

	#search {
		margin-bottom: 15px;
	}

	.header-icons {
		justify-content: center;
		margin-top: 10px;
	}

	#cart {
		margin: 0;
	}
}

/* Currency ve Language için minimal stil */
.top-minimal {
	display: flex;
	align-items: center;
	gap: 15px;
}

.top-minimal .list-inline-item {
	margin-right: 0;
}

.top-minimal a {
	color: #4a5568;
	font-size: 0.85rem;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 4px;
}

.top-minimal a:hover {
	color: #f0b90b;
}

:root {
	--footer-bg: #0f1219;
	--footer-secondary: #1a1e2b;
	--footer-text: #9aa4b8;
	--footer-heading: #ffffff;
	--footer-border: #252c3a;
	--footer-accent: #f0b90b;
	--footer-accent-light: rgba(240, 185, 11, 0.1);
}

.footer {
	background-color: var(--footer-bg);
	color: var(--footer-text);
	font-size: 0.9rem;
	line-height: 1.6;
	border-top: 3px solid var(--footer-accent);
	margin-top: 50px;
}

.footer-top {
	padding: 60px 0 40px;
	border-bottom: 1px solid var(--footer-border);
}

.footer h5 {
	color: var(--footer-heading);
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	letter-spacing: 0.3px;
	position: relative;
}

.footer h5::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -8px;
	width: 30px;
	height: 2px;
	background: var(--footer-accent);
}

.footer-about {
	margin-bottom: 1.5rem;
	line-height: 1.7;
	color: var(--footer-text);
}

.social-links {
	display: flex;
	gap: 10px;
}

.social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: var(--footer-secondary);
	border: 1px solid var(--footer-border);
	border-radius: 50%;
	color: var(--footer-text);
	font-size: 1rem;
	transition: all 0.2s ease;
}

.social-link:hover {
	background: var(--footer-accent);
	border-color: var(--footer-accent);
	color: var(--footer-bg);
	transform: translateY(-3px);
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	color: var(--footer-text);
	transition: all 0.2s ease;
	display: inline-block;
	position: relative;
}

.footer-links a:hover {
	color: var(--footer-accent);
	transform: translateX(5px);
}

.footer-contact li {
	display: flex;
	gap: 12px;
	margin-bottom: 20px;
}

.footer-contact i {
	width: 20px;
	color: var(--footer-accent);
	font-size: 1.1rem;
	margin-top: 3px;
}

.footer-contact a {
	color: var(--footer-text);
	transition: color 0.2s ease;
}

.footer-contact a:hover {
	color: var(--footer-accent);
}

.footer-contact .d-block {
	font-size: 0.8rem;
	opacity: 0.7;
	margin-bottom: 2px;
}

.footer-phone {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--footer-accent) !important;
}

address {
	font-style: normal;
	line-height: 1.5;
	color: var(--footer-text);
}

.footer-payment {
	background: var(--footer-secondary);
	padding: 25px 0;
	border-bottom: 1px solid var(--footer-border);
}

.payment-security {
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
}

.security-item {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--footer-heading);
	font-size: 0.9rem;
	font-weight: 500;
}

.security-item i {
	color: var(--footer-accent);
	font-size: 1.1rem;
}

.payment-methods {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 15px;
	flex-wrap: wrap;
}

.payment-method {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 5px 10px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	color: var(--footer-heading);
	font-size: 1.5rem;
	transition: all 0.2s ease;
	border: 1px solid var(--footer-border);
}

.payment-method:hover {
	transform: translateY(-2px);
	border-color: var(--footer-accent);
	background: rgba(240, 185, 11, 0.1);
}

.payment-method img {
	filter: brightness(0.8) grayscale(0.5);
	transition: all 0.2s ease;
}

.payment-method:hover img {
	filter: brightness(1) grayscale(0);
}

.footer-bottom {
	background: var(--footer-bg);
	padding: 25px 0;
}

.footer-features {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.footer-features li {
	color: var(--footer-text);
	font-size: 0.9rem;
	display: flex;
	align-items: center;
	gap: 6px;
}

.footer-features i {
	color: var(--footer-accent);
	font-size: 1rem;
}

.copyright {
	color: var(--footer-text);
	font-size: 0.85rem;
}

.copyright .text-muted {
	opacity: 0.6;
	font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 992px) {
	.footer-top {
		padding: 40px 0 20px;
	}

	.footer-top [class*="col-"] {
		margin-bottom: 30px;
	}

	.payment-security {
		justify-content: center;
		margin-bottom: 20px;
	}

	.payment-methods {
		justify-content: center;
	}

	.footer-features {
		justify-content: center;
		margin-bottom: 15px;
	}

	.text-md-end {
		text-align: center !important;
	}
}

@media (max-width: 768px) {
	.footer h5 {
		margin-bottom: 1.2rem;
	}

	.footer h5::after {
		left: 0;
		transform: none;
	}

	.footer-contact {
		max-width: 300px;
	}

	.security-item {
		font-size: 0.8rem;
	}
}

/* Animasyonlar */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

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

.footer {
	animation: fadeInUp 0.5s ease forwards;
}

.search-form {
	width: 100%;
	max-width: 100%;
}

.search-wrapper {
	display: flex;
	align-items: center;
	background: #f8fafd;
	border: 1px solid #eef2f6;
	border-radius: 60px;
	transition: all 0.2s ease;
	padding: 0;
	overflow: hidden;
}

.search-wrapper:focus-within {
	border-color: #f0b90b;
	background: #ffffff;
	box-shadow: 0 4px 12px rgba(240, 185, 11, 0.08);
}

.search-input {
	flex: 1;
	border: none;
	background: transparent;
	padding: 14px 20px;
	font-size: 0.95rem;
	font-family: 'Plus Jakarta Sans', sans-serif;
	color: #1a1e2b;
	outline: none;
}

.search-input::placeholder {
	color: #a0aec0;
	font-weight: 300;
	letter-spacing: -0.01em;
}

.search-button {
	background: transparent;
	border: none;
	color: #f0b90b;
	width: 54px;
	height: 54px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	cursor: pointer;
	transition: all 0.2s ease;
	border-left: 1px solid transparent;
}

.search-wrapper:focus-within .search-button {
	border-left-color: #eef2f6;
}

.search-button:hover {
	color: #1a1e2b;
	transform: scale(1.05);
}

.search-button i {
	transition: transform 0.2s ease;
}

.search-button:hover i {
	transform: rotate(90deg);
}

@media (max-width: 768px) {
	.search-input {
		padding: 12px 16px;
		font-size: 0.9rem;
	}

	.search-button {
		width: 48px;
		height: 48px;
		font-size: 1.1rem;
	}
}

.cart-dropdown {
	position: relative;
}

/* Sepet İkonu (Header uyumlu) */
.cart-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: #f8fafd;
	border: 1px solid #eef2f6;
	border-radius: 50%;
	color: #1a1e2b;
	font-size: 1.2rem;
	transition: all 0.2s ease;
	position: relative;
	cursor: pointer;
	padding: 0;
}

.cart-icon:hover {
	border-color: #f0b90b;
	background: #ffffff;
	color: #f0b90b;
	transform: translateY(-2px);
}

.cart-icon .badge {
	position: absolute;
	top: -5px;
	right: -5px;
	background: #f0b90b;
	color: #1a1e2b;
	font-size: 0.7rem;
	font-weight: 700;
	min-width: 20px;
	height: 20px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 5px;
	border: 2px solid #ffffff;
}

/* Sepet Menüsü */
.cart-menu {
	position: absolute;
	top: 100%;
	right: 0;
	margin-top: 10px;
	width: 380px;
	max-width: 90vw;
	background: #ffffff;
	border: 1px solid #eef2f6;
	border-radius: 20px;
	box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
	padding: 0;
	overflow: hidden;
	display: none;
	z-index: 1050;
}

.cart-menu.show {
	display: block;
	animation: slideDown 0.2s ease forwards;
}

/* Sepet İçindeki Ürünler */
.cart-items {
	max-height: 350px;
	overflow-y: auto;
	padding: 15px;
}

.cart-item {
	display: flex;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid #eef2f6;
}

.cart-item:last-child {
	border-bottom: none;
}

/* Ürün Görseli */
.cart-item-image {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	border-radius: 12px;
	overflow: hidden;
	background: #f8fafd;
	border: 1px solid #eef2f6;
}

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

/* Ürün Detayları */
.cart-item-details {
	flex: 1;
	min-width: 0;
}

.cart-item-title {
	display: block;
	font-weight: 600;
	font-size: 0.9rem;
	color: #1a1e2b;
	margin-bottom: 4px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.cart-item-title:hover {
	color: #f0b90b;
}

.cart-item-meta {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 2px;
}

.cart-item-price {
	font-weight: 700;
	color: #1a1e2b;
	font-size: 0.95rem;
}

.cart-item-quantity {
	color: #a0aec0;
	font-size: 0.8rem;
}

.cart-item-options {
	color: #a0aec0;
	font-size: 0.75rem;
	line-height: 1.4;
}

.cart-item-options small {
	display: block;
}

/* Silme Butonu */
.cart-item-remove {
	flex-shrink: 0;
}

.remove-btn {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #fee2e2;
	border: none;
	color: #ef4444;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s ease;
	padding: 0;
}

.remove-btn:hover {
	background: #ef4444;
	color: #ffffff;
	transform: scale(1.1);
}

/* Sepet Footer */
.cart-footer {
	background: #f8fafd;
	border-top: 1px solid #eef2f6;
	padding: 15px;
}

.cart-totals {
	margin-bottom: 15px;
}

.cart-total {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 4px 0;
	font-size: 0.9rem;
	color: #4a5568;
}

.cart-total:last-child {
	font-weight: 700;
	color: #1a1e2b;
	font-size: 1rem;
	border-top: 1px dashed #eef2f6;
	margin-top: 4px;
	padding-top: 8px;
}

.cart-actions {
	display: flex;
	gap: 8px;
}

.cart-btn {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 10px;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 600;
	transition: all 0.2s ease;
	border: 1px solid transparent;
}

.cart-btn-secondary {
	background: #ffffff;
	border-color: #eef2f6;
	color: #1a1e2b;
}

.cart-btn-secondary:hover {
	background: #f0b90b;
	border-color: #f0b90b;
	color: #1a1e2b;
}

.cart-btn-primary {
	background: #f0b90b;
	color: #1a1e2b;
}

.cart-btn-primary:hover {
	background: #d4a50a;
	transform: translateY(-2px);
}

/* Boş Sepet */
.cart-empty {
	text-align: center;
	padding: 40px 20px;
	color: #a0aec0;
}

.cart-empty i {
	font-size: 3rem;
	color: #eef2f6;
	margin-bottom: 15px;
}

.cart-empty p {
	font-size: 0.9rem;
	margin: 0;
}

/* Scrollbar */
.cart-items::-webkit-scrollbar {
	width: 4px;
}

.cart-items::-webkit-scrollbar-track {
	background: #eef2f6;
}

.cart-items::-webkit-scrollbar-thumb {
	background: #f0b90b;
	border-radius: 4px;
}

/* Animasyon */
@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}

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

/* Responsive */
@media (max-width: 768px) {
	.cart-menu {
		width: 100vw;
		max-width: 100vw;
		position: fixed;
		top: auto;
		bottom: 0;
		left: 0;
		right: 0;
		margin-top: 0;
		border-radius: 20px 20px 0 0;
		max-height: 80vh;
		animation: slideUp 0.3s ease forwards;
	}

	@keyframes slideUp {
		from {
			transform: translateY(100%);
		}

		to {
			transform: translateY(0);
		}
	}

	.cart-items {
		max-height: 40vh;
	}
}

/* Hero Slider CSS */
.hero-slider {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	background: #0a0c12;
	margin-bottom: 20px;
	border-radius: 15px !important;
	z-index: 1 !important;
}

.hero-slider .carousel-inner,
.hero-slider .carousel-item {
	height: 100%;
}

.hero-slider .slide-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero-slider .slide-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 8s ease;
}

.hero-slider .carousel-item.active .slide-image {
	transform: scale(1.1);
}

.hero-slider .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
	z-index: 2;
}

.hero-slider .slide-content {
	position: relative;
	z-index: 3;
	height: 100%;
	display: flex;
	align-items: center;
	padding: 0 15px;
}

.hero-slider .slide-content .row {
	width: 100%;
}

.hero-slider .slide-badge {
	display: inline-block;
	background: rgba(240, 185, 11, 0.2);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(240, 185, 11, 0.5);
	color: #f0b90b;
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 2px;
	padding: 8px 20px;
	border-radius: 50px;
	margin-bottom: 25px;
	animation: fadeInUp 0.6s ease forwards;
	opacity: 0;
	animation-delay: 0.2s;
	text-transform: uppercase;
}

.hero-slider .slide-title {
	color: #ffffff;
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 20px;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
	animation: fadeInUp 0.6s ease forwards;
	opacity: 0;
	animation-delay: 0.3s;
	letter-spacing: -0.02em;
}

.hero-slider .slide-description {
	color: rgba(255, 255, 255, 0.9);
	font-size: clamp(1rem, 2vw, 1.3rem);
	line-height: 1.6;
	margin-bottom: 35px;
	max-width: 600px;
	text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
	animation: fadeInUp 0.6s ease forwards;
	opacity: 0;
	animation-delay: 0.4s;
	font-weight: 400;
}

.hero-slider .carousel-indicators {
	z-index: 4;
	margin-bottom: 40px;
	gap: 8px;
}

.hero-slider .carousel-indicators button {
	width: 50px;
	height: 4px;
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.3);
	border: none;
	margin: 0;
	transition: all 0.3s ease;
}

.hero-slider .carousel-indicators button.active {
	background: #f0b90b;
	width: 70px;
}

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
	z-index: 4;
	width: 60px;
	height: 60px;
	top: 50%;
	transform: translateY(-50%);
	opacity: 0;
	transition: all 0.3s ease;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-slider:hover .carousel-control-prev,
.hero-slider:hover .carousel-control-next {
	opacity: 1;
}

.hero-slider .carousel-control-prev {
	left: 30px;
}

.hero-slider .carousel-control-next {
	right: 30px;
}

.hero-slider .carousel-control-prev i,
.hero-slider .carousel-control-next i {
	font-size: 1.8rem;
	color: white;
	transition: all 0.3s ease;
}

.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover {
	background: #f0b90b;
	border-color: #f0b90b;
}

.hero-slider .carousel-control-prev:hover i,
.hero-slider .carousel-control-next:hover i {
	color: #0a0c12;
}

.hero-slider .carousel-item {
	position: relative;
}

.hero-slider .carousel-item::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 3px;
	background: #f0b90b;
	z-index: 5;

	animation: progressBar {
			{
			interval
		}
	}

	ms linear forwards;
}

@keyframes progressBar {
	to {
		width: 100%;
	}
}

/* Promo Banner CSS */
.promo-banner {
	padding: 40px 0;
	background: #ffffff;
}

.promo-card {
	position: relative;
	background-size: cover;
	background-position: center;
	border-radius: 24px;
	overflow: hidden;
	min-height: 500px;
	display: flex;
	align-items: center;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.promo-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
	z-index: 1;
}

.promo-content {
	position: relative;
	z-index: 2;
	padding: 60px;
	color: #ffffff;
	max-width: 600px;
}

.promo-badge {
	display: inline-block;
	background: #f0b90b;
	color: #0a0c12;
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	padding: 6px 16px;
	border-radius: 40px;
	margin-bottom: 20px;
	animation: fadeInLeft 0.6s ease forwards;
}

.promo-title {
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 20px;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
	animation: fadeInLeft 0.6s ease forwards;
	animation-delay: 0.1s;
	opacity: 0;
	animation-fill-mode: forwards;
}

.promo-description {
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 30px;
	opacity: 0.9;
	max-width: 500px;
	animation: fadeInLeft 0.6s ease forwards;
	animation-delay: 0.2s;
	opacity: 0;
	animation-fill-mode: forwards;
}

.promo-button {
	display: inline-flex;
	align-items: center;
	background: #f0b90b;
	color: #0a0c12;
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 14px 36px;
	border-radius: 50px;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	animation: fadeInLeft 0.6s ease forwards;
	animation-delay: 0.3s;
	opacity: 0;
	animation-fill-mode: forwards;
}

.promo-button:hover {
	background: transparent;
	color: #ffffff;
	border-color: #ffffff;
	transform: translateY(-3px);
}

.promo-button i {
	transition: transform 0.3s ease;
}

.promo-button:hover i {
	transform: translateX(5px);
}

.promo-button.disabled {
	opacity: 0.5;
	cursor: not-allowed;
	background: #666;
}

/* Best Sellers Grid CSS */
.best-sellers {
	padding: 60px 0;
	background: #ffffff;
}

.section-header {
	text-align: center;
	margin-bottom: 40px;
}

.section-title {
	font-size: 2.2rem;
	font-weight: 700;
	color: #1a1e2b;
	margin-bottom: 15px;
	position: relative;
	display: inline-block;
}

.section-line {
	width: 80px;
	height: 4px;
	background: #f0b90b;
	margin: 0 auto;
	border-radius: 2px;
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 25px;
}

.product-card {
	background: #ffffff;
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.3s ease;
	border: 1px solid #eef2f6;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
	border-color: #f0b90b;
}

.product-image {
	position: relative;
	width: 100%;
	height: 200px;
	overflow: hidden;
	background: #f8fafd;
}

.product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
	transform: scale(1.1);
}

.product-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
	opacity: 1;
}

.btn-quick-view {
	background: #f0b90b;
	color: #1a1e2b;
	padding: 10px 20px;
	border-radius: 30px;
	font-size: 0.9rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transform: translateY(20px);
	transition: all 0.3s ease;
	border: 2px solid transparent;
	cursor: pointer;
}

.product-card:hover .btn-quick-view {
	transform: translateY(0);
}

.btn-quick-view:hover {
	background: transparent;
	color: #ffffff;
	border-color: #ffffff;
}

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

.product-title {
	font-size: 1rem;
	font-weight: 600;
	color: #1a1e2b;
	margin-bottom: 10px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.btn-add-cart {
	display: inline-block;
	background: transparent;
	color: #1a1e2b;
	border: 2px solid #eef2f6;
	padding: 8px 25px;
	border-radius: 30px;
	font-size: 0.85rem;
	font-weight: 600;
	transition: all 0.3s ease;
	cursor: pointer;
	width: 100%;
}

.btn-add-cart:hover:not(:disabled) {
	background: #f0b90b;
	border-color: #f0b90b;
	color: #1a1e2b;
	transform: scale(1.05);
}

.btn-add-cart:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}

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

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}

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

/* Responsive */
@media (max-width: 992px) {
	.hero-slider {
		min-height: 600px;
	}

	.hero-slider .overlay {
		background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
	}

	.hero-slider .slide-content {
		text-align: center;
	}

	.hero-slider .slide-description {
		margin-left: auto;
		margin-right: auto;
	}

	.promo-content {
		padding: 40px;
	}
}

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

	.hero-slider .carousel-control-prev,
	.hero-slider .carousel-control-next {
		display: none;
	}

	.best-sellers {
		padding: 40px 0;
	}

	.section-title {
		font-size: 1.8rem;
	}

	.products-grid {
		grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
		gap: 15px;
	}

	.product-image {
		height: 160px;
	}

	.product-title {
		font-size: 0.9rem;
	}

	.promo-card {
		min-height: 400px;
	}

	.promo-content {
		padding: 30px;
		text-align: center;
		margin: 0 auto;
	}

	.promo-description {
		margin-left: auto;
		margin-right: auto;
	}
}

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

	.product-image {
		height: 140px;
	}

	.promo-card {
		min-height: 350px;
	}

	.promo-title {
		font-size: 1.8rem;
	}
}

.hero-slider {
	z-index: 1 !important;
}

main>*:not(.hero-slider) {
	position: relative;
	z-index: 10;
}