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

body {
	font-family: "Montserrat", sans-serif;
	line-height: 1.6;
	color: black;
	background-color: #fff;
}

.category-btn {
	font-family: "Montserrat", sans-serif;
	font-size: x-large;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.header {
	background: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
}

.header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
}

.logo-nav-wrapper {
	display: flex;
	align-items: center;
	gap: 40px;
}

.logo h1 {
	font-size: 40px;
	font-weight: 900;
	color: black;
	margin: 0;
}

.logo .black {
	color: #000000;
}

.logo .red {
	color: #8B0000;
}

.nav ul {
	display: flex;
	list-style: none;
	gap: 30px;
	margin: 0;
	padding: 0;
}

.nav-link {
	text-decoration: none;
	color: black;
	font-size: 25px;
	font-weight: 700;
	transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
	color: #8B0000;
}

.cart-wrapper {
	display: flex;
	align-items: center;
	position: relative;
	gap: 20px;
}

.basket-icon {
	width: 35px;
	height: 35px;
}

.whatsapp-icon {
	width: 30px;
	height: 30px;
	cursor: pointer;
	transition: transform 0.2s ease;
	margin-right: 5px;
}


.whatsapp-icon:hover {
	transform: scale(1.1);
}

.cart-badge {
	position: absolute;
	top: -6px;
	right: -6px;
	background: #8B0000;
	color: white;
	width: 20px;
	height: 20px;
	font-size: 12px;
	font-weight: 700;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}


.header-actions {
	position: relative;
}

/* Sepet + WhatsApp ikonları */
.cart-wrapper {
	position: absolute;
	right: 45px; /* 👉 sağdan uzaklık (değerle oynayabilirsin) */
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	gap: 8px;
}

/* 3 çizgili mobil menü butonu */
.mobile-menu-btn {
	position: absolute;
	right: 10px; /* 👉 ekranın en sağında durur */
	top: 50%;
	transform: translateY(-50%);
}


.mobile-menu-btn {
	display: none;
	flex-direction: column;
	background: none;
	border: none;
	cursor: pointer;
	padding: 5px;
	gap: 4px;
}

.mobile-menu-btn span {
	width: 25px;
	height: 3px;
	background: black;
	border-radius: 2px;
	transition: all 0.3s ease;
}

.main {
	margin-top: 70px;
}

.section {
	display: block;
}

.section.active {
	display: block;
}

.hero {
	max-width: 1200px;
	margin: 30px auto 0;
	padding: 10px 40px 60px;
	position: relative;
	min-height: 90vh;
	display: flex;
	align-items: center;
}

.hero-content {
	width: 100%;
	position: relative;
}

.hero-text {
	position: relative;
	z-index: 3;
}

.hero-text h1 {
	font-weight: 900;
	font-size: 72px;
	line-height: 80px;
	color: #000000;
	margin-bottom: 10px;
}

.hero-text h1 span {
	display: block;
}

.hero-text p {
	font-weight: 600;
	font-size: 20px;
	line-height: 28px;
	max-width: 568px;
	margin-bottom: 16px;
}

.btn-bg {
	width: 280px;
	height: 60px;
	background-color: #8B0000;
	border-radius: 20px;
	position: relative;
	margin-bottom: 30px;
}

.btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	font-weight: 700;
	font-size: 24px;
	line-height: 28px;
	text-align: center;
	text-decoration: none;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.features-wrapper {
	max-width: 568px;
}

.features {
	display: flex;
	justify-content: flex-start;
	gap: 40px;
	flex-wrap: wrap;
	margin-top: 10px;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 16px;
}

.feature-item img.feature-icon {
	width: 90px;
	height: auto;
}

.feature-item .text {
	font-weight: 900;
	font-size: 28px;
	line-height: 32px;
	color: #000;
	text-align: left;
}

.doner-wrapper {
	position: absolute;
	width: 600px;
	height: 600px;
	top: 100px;
	right: -120px;
}

.circle {
	width: 100%;
	height: 100%;
	background-color: #8B0000;
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.doner-img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 1100px;
	height: auto;
	transform: translate(-50%, -50%) rotate(-18deg);
	z-index: 2;
}

.menu-section {
	padding: 80px 0;
	background: #f8f8f8;
}

.menu-section h2 {
	text-align: center;
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 50px;
	color: black;
}

.menu-categories {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 50px;
	flex-wrap: wrap;
}

.category-btn {
	background: transparent;
	border: 2px solid #ddd;
	padding: 12px 24px;
	border-radius: 25px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	color: black;
}

.category-btn.active,
.category-btn:hover {
	background: #8B0000;
	border-color: #8B0000;
	color: white;
}

.menu-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.menu-item {
	background: #F0F0F0;
	border-radius: 29px;
	padding: 20px;
	text-align: left;
	transition: transform 0.3s ease;
}

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

.menu-item h3 {
	font-size: 22px;
	font-weight: 900;
	margin-bottom: 4px;
	color: black;
	text-align: left;
}

.item-description {
	font-size: 14px;
	font-weight: 600;
	color: #666;
	margin-bottom: 10px;
	text-align: left;
}

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

.price {
	font-size: 24px;
	font-weight: 800;
	color: #8B0000;
}

.cart-controls {
	display: flex;
	align-items: center;
}

.add-to-cart-btn {
	width: 36px;
	height: 36px;
	background: none;
	border: none;
	color: #8B0000;
	font-size: 28px;
	font-weight: 900;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.counter-wrapper {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 22px;
	font-weight: 900;
	color: #8B0000;
}

.counter-btn {
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 2px solid #8B0000;
	border-radius: 6px;
	cursor: pointer;
	font-size: 18px;
	font-weight: 900;
	color: #8B0000;
}

.counter-value {
	width: 28px;
	text-align: center;
}

.add-to-cart {
	background: #8B0000;
	color: white;
	border: none;
	padding: 8px 16px;
	border-radius: 6px;
	cursor: pointer;
	transition: background 0.3s ease;
}

.add-to-cart:hover {
	background: #991B1B;
}

.contact-section {
	padding: 100px 0;
	background: #ffffff;
}

.contact-section h2 {
	text-align: center;
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 60px;
	color: #1a1a1a;
}

.contact-content {
	font-family: "Montserrat", sans-serif;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}

.contact-form {
	background: #ffffff;
	padding: 0;
	border-radius: 0;
	box-shadow: none;
}

.form-group {
	margin-bottom: 30px;
}

.form-group label {
	display: block;
	margin-bottom: 12px;
	font-weight: 600;
	font-size: x-large;
	font-weight: 800;
	color: #1a1a1a;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 16px 20px;
	border: none;
	border-radius: 12px;
	font-size: 16px;
	font-family: 'Montserrat', sans-serif;
	background: #f5f5f5;
	transition: all 0.3s ease;
	box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	background: #e8e8e8;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: #999;
	font-weight: 400;
}

.form-group textarea {
	height: 120px;
	resize: vertical;
}

.submit-btn {
	background: #8B0000;
	color: white;
	border: none;
	padding: 16px 32px;
	font-size: 16px;
	font-weight: 600;
	font-family: 'Montserrat', sans-serif;
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.3s ease;
	width: auto;
	margin-top: 10px;
}

.submit-btn:hover {
	background: #a00000;
}

.contact-map {
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	height: auto;
	line-height: 0;
	min-height: 400px;
}

.contact-map iframe {
	display: block;
	width: 100%;
	height: 400px;
	border: none;
	margin: 0;
	padding: 0;
}

.footer {
	background: #000;
	color: #fff;
	padding: 60px 20px 30px;
	margin-top: 80px;
  }
  
  .footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto;
  }
  
  .footer-col {
	display: flex;
	flex-direction: column;
	gap: 16px;
  }
  
  .footer-logo {
	font-size: 36px;
	font-weight: 900;
  }
  
  .footer-desc {
	font-size: 16px;
	color: #ccc;
	line-height: 1.6;
  }
  
  .footer-social {
	display: flex;
	gap: 16px;
  }
  
  .footer-icon {
	font-size: 26px;
	color: #fff;
	transition: color 0.2s;
  }
  
  .footer-icon:hover {
	color: #8B0000;
  }
  
  .services h3 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 8px;
  }
  
  .services ul {
	list-style: none;
	padding: 0;
	margin: 0;
  }
  
  .services ul li {
	margin-bottom: 8px;
  }
  
  .services ul li a {
	color: #fff;
	font-size: 16px;
	text-decoration: none;
	transition: color 0.2s;
  }
  
  .services ul li a:hover {
	color: #8B0000;
  }
  
  .address-row {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 16px;
	color: #ccc;
  }
  
  .address-row i {
	font-size: 20px;
  }
  
  .footer-bottom {
	text-align: center;
	font-size: 15px;
	color: #aaa;
	margin-top: 30px;
  }
  
  
@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        align-items: center;
    }
    .footer-col {
        align-items: center;
    }
    .address-row {
        justify-content: center;
    }
}
.mobile-menu-sidebar {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: 9998;
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s ease;
}

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

.mobile-menu-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(2px);
}

.mobile-menu-panel {
	position: absolute;
	top: 0;
	right: 0;
	width: 280px;
	height: 100%;
	background: white;
	box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
	transform: translateX(100%);
	transition: transform 0.3s ease;
	display: flex;
	flex-direction: column;
}

.mobile-menu-sidebar.active .mobile-menu-panel {
	transform: translateX(0);
}

.mobile-menu-header {
	padding: 20px;
	border-bottom: 1px solid #eee;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #f8f9fa;
}

.mobile-menu-header h3 {
	font-size: 20px;
	font-weight: 600;
	color: black;
	margin: 0;
}

.mobile-menu-close {
	background: none;
	border: none;
	font-size: 20px;
	color: #666;
	cursor: pointer;
	padding: 5px;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.mobile-menu-close:hover {
	background: #e9ecef;
	color: #8B0000;
}

.mobile-menu-content {
	flex: 1;
	padding: 20px 0;
}

.mobile-nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.mobile-nav li {
	margin-bottom: 10px;
}

.mobile-nav-link {
	display: block;
	padding: 15px 20px;
	text-decoration: none;
	color: black;
	font-weight: 500;
	font-size: 16px;
	transition: all 0.3s ease;
	border-left: 3px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
	background: #f8f9fa;
	color: #8B0000;
	border-left-color: #8B0000;
}

.cart-sidebar {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s ease;
}

.cart-sidebar.active {
	visibility: visible;
	opacity: 1;
}

.cart-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(2px);
}

.cart-panel {
	position: absolute;
	top: 0;
	right: 0;
	width: 400px;
	height: 100%;
	background: white;
	box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
	transform: translateX(100%);
	transition: transform 0.3s ease;
	display: flex;
	flex-direction: column;
}

.cart-sidebar.active .cart-panel {
	transform: translateX(0);
}

.cart-header {
	padding: 20px;
	border-bottom: 1px solid #eee;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #f8f9fa;
}

.cart-header h3 {
	font-size: 20px;
	font-weight: 600;
	color: black;
	margin: 0;
}

.cart-close {
	background: none;
	border: none;
	font-size: 20px;
	color: #666;
	cursor: pointer;
	padding: 5px;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.cart-close:hover {
	background: #e9ecef;
	color: #8B0000;
}

.cart-content {
	flex: 1;
	overflow-y: auto;
	padding: 20px;
}

.empty-cart {
	text-align: center;
	padding: 60px 20px;
	color: #999;
}

.empty-cart i {
	font-size: 48px;
	margin-bottom: 15px;
	color: #ddd;
}

.empty-cart p {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 5px;
	color: #666;
}

.empty-cart span {
	font-size: 14px;
	color: #999;
}

.cart-items {
	display: none;
}

.cart-items.has-items {
	display: block;
}

.cart-item {
	display: flex;
	align-items: center;
	padding: 15px 0;
	border-bottom: 1px solid #f0f0f0;
}

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

.cart-item-image {
	width: 60px;
	height: 60px;
	border-radius: 8px;
	object-fit: cover;
	margin-right: 15px;
}

.cart-item-details {
	flex: 1;
}

.cart-item-name {
	font-size: 16px;
	font-weight: 500;
	color: black;
	margin-bottom: 5px;
}

.cart-item-price {
	font-size: 14px;
	color: #8B0000;
	font-weight: 600;
}

.cart-item-controls {
	display: flex;
	align-items: center;
	gap: 10px;
}

.quantity-btn {
	background: #f8f9fa;
	border: 1px solid #dee2e6;
	width: 30px;
	height: 30px;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 14px;
	color: #666;
}

.quantity-btn:hover {
	background: #e9ecef;
	border-color: #8B0000;
	color: #8B0000;
}

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

.quantity-display {
	font-weight: 600;
	min-width: 20px;
	text-align: center;
	color: black;
}

.remove-item {
	background: none;
	border: none;
	color: #dc3545;
	cursor: pointer;
	padding: 5px;
	border-radius: 4px;
	transition: all 0.3s ease;
}

.remove-item:hover {
	background: #dc3545;
	color: white;
}

.cart-footer {
	padding: 20px;
	border-top: 1px solid #eee;
	background: #f8f9fa;
}

.customer-info-section {
	margin-bottom: 20px;
}

.customer-info-section .form-group {
	margin-bottom: 15px;
}

.customer-info-section label {
	display: block;
	margin-bottom: 8px;
	font-size: 14px;
	font-weight: 500;
	color: black;
}

.customer-info-section input {
	width: 100%;
	padding: 12px;
	border: 2px solid #dee2e6;
	border-radius: 8px;
	font-size: 16px;
	transition: all 0.3s ease;
	background: white;
}

.customer-info-section input:focus {
	outline: none;
	border-color: #8B0000;
	box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
}

.customer-info-section input::placeholder {
	color: #999;
}

.cart-total {
	margin-bottom: 20px;
}

.total-line {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 18px;
	font-weight: 600;
	color: black;
}

.total-amount {
	color: #8B0000;
}

.checkout-btn {
	width: 100%;
	background: #25D366;
	/* WhatsApp green color */
	color: white;
	border: none;
	padding: 15px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.checkout-btn:hover {
	background: #128C7E;
	/* Darker WhatsApp green */
	transform: translateY(-1px);
}

.checkout-btn:active {
	transform: translateY(0);
}

.checkout-btn:disabled {
	background: #ccc;
	cursor: not-allowed;
	transform: none;
}

/* Hero responsive styles */
@media (max-width: 768px) {
	.nav {
		display: none;
	}

	.mobile-menu-btn {
		display: flex;
	}

	.logo-nav-wrapper {
		gap: 20px;
	}

	.logo h1 {
		font-size: 20px;
	}

	.hero {
		padding: 10px 20px 60px;
		margin-top: 15px;
	}

	.hero-text h1 {
		font-size: 40px;
		line-height: 46px;
	}

	.hero-text p {
		font-size: 16px;
		line-height: 22px;
	}

	.btn-bg {
		width: 100%;
		height: 60px;
	}

	.btn {
		font-size: 20px;
		line-height: 60px;
	}

	.features {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}

	.feature-item img.feature-icon {
		width: 60px;
	}

	.feature-item .text {
		font-size: 20px;
	}

	.doner-wrapper {
		position: relative;
		width: 100%;
		height: 400px;
		top: 20px;
		right: 0;
		margin-top: 30px;
	}

	.circle {
		width: 300px;
		height: 300px;
		margin: 0 auto;
	}

	.doner-img {
		width: 350px;
		transform: translate(-50%, -50%) scaleX(-1) rotate(-18deg);
	}
}

@media (max-width: 480px) {
	.hero-text h1 {
		font-size: 2.5rem;
	}

	.menu-section h2,
	.about-text h2,
	.contact-section h2 {
		font-size: 2rem;
	}

	.contact-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.contact-form {
		order: 1;
	}

	.contact-map {
		order: 2;
		min-height: 300px;
	}

	.contact-map iframe {
		height: 300px;
	}

	.cart-panel {
		width: 100vw;
	}

	.cart-item {
		flex-wrap: wrap;
		gap: 10px;
	}

	.cart-item-image {
		width: 50px;
		height: 50px;
	}

	.cart-item-controls {
		gap: 8px;
	}

	.quantity-btn {
		width: 28px;
		height: 28px;
		font-size: 12px;
	}
}
@media (max-width: 600px) {
    .footer {
        padding: 30px 0 10px;
    }
    .footer-logo {
        font-size: 30px;
    }
    .footer-desc {
        font-size: 15px;
        max-width: 95vw;
    }
    .footer-icon {
        font-size: 26px;
    }
    .services h3 {
        font-size: 22px;
    }
    .services ul li a {
        font-size: 17px;
    }
    .address-row {
        font-size: 15px;
        gap: 10px;
    }
    .address-row i {
        font-size: 22px;
    }
    .footer-bottom {
        font-size: 13px;
        margin-top: 22px;
    }
    .footer-content {
        gap: 18px;
        padding: 0 6vw;
    }
}
@media (max-width: 768px) {
    .doner-wrapper {
        display: none !important;
    }
}
@media (max-width: 600px) {
    .category-btn {
        font-size: 15px;
        padding: 7px 14px;
        border-radius: 16px;
        margin-bottom: 6px;
    }
    .menu-categories {
        gap: 7px;
    }
}
@media (max-width: 600px) {
  .hero-text h1,
  .hero-text h1 span {
    font-size: 42px;
  }
}
@media (max-width: 600px) {
  .cart-wrapper img {
    width: 30px;
    height: 30px;
  }
  .cart-badge {
    font-size: 13px;
    min-width: 18px;
    min-height: 18px;
    padding: 2px 5px;
  }
}
@media (max-width: 600px) {
  .menu-section h2 {
    font-size: 2.1rem;
    /* Gerekirse 2.4rem yapabilirsin */
  }
  .menu-categories .category-btn {
    font-size: 17px;
    padding: 11px 18px;
    border-radius: 18px;
  }
}
.category-banner {
	width: 100%;
	max-width: 100%;
	height: 220px; /* ya da 250px istersen */
	object-fit: cover;
	border-radius: 16px;
	margin-bottom: 30px;
	display: block;
}
.contact-extra-info {
	margin-top: 20px;
	background: #f4f4f4;
	border-radius: 12px;
	padding: 16px;
	font-family: 'Montserrat', sans-serif;
	text-align: left;
	font-size: 15px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-extra-info .info-title {
	font-size: 17px;
	font-weight: 700;
	margin-bottom: 8px;
	color: #000;
}

.contact-extra-info a {
	color: #8B0000;
	text-decoration: none;
	font-weight: 600;
}

.contact-extra-info a:hover {
	text-decoration: underline;
}
@media (max-width: 768px) {
	.contact-content {
		grid-template-columns: 1fr;
	}

	.contact-form {
		order: 1;
	}

	.map-column {
		order: 2;
	}
}
