/* Genel Stiller */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-dark: #8b0000; /* Koyu kırmızı/maroon */
  --primary-light: #b22222; /* Açık kırmızı */
  --secondary: #d4af37; /* Altın sarısı */
  --secondary-light: #e6c15c; /* Açık altın */
  --light: #f5f5dc; /* Bej/cream */
  --dark: #2c1810; /* Koyu kahverengi */
  --gray: #8b7355; /* Toprak rengi */
  --light-gray: #faf3e0; /* Açık krem */
  --white: #ffffff;
  --shadow: 0 5px 15px rgba(44, 24, 16, 0.1);
  --transition: all 0.3s ease;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--light-gray);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header ve Navigasyon */
.header {
  background-color: var(--white);
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
  border-bottom: 3px solid var(--secondary);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  flex-direction: column;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-dark);
  text-decoration: none;
  line-height: 1.2;
}

.logo span {
  color: var(--secondary);
}

.logo-subtitle {
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-item {
  margin-left: 25px;
}

.nav-link {
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
  padding: 8px 0;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-dark);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--secondary);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.phone-number {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-number i {
  color: var(--secondary);
  font-size: 14px;
}

.phone-label {
  font-size: 11px;
  color: var(--gray);
  display: block;
  font-weight: 500;
}

.phone-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-dark);
  display: block;
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
}

.bar {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--primary-dark);
  border-radius: 3px;
  transition: var(--transition);
}

/* Hero Bölümü */
.hero {
  background:
    linear-gradient(rgba(43, 24, 16, 0.85), rgba(43, 24, 16, 0.9)),
    url("https://images.unsplash.com/photo-1565299624946-b28f40a0ae38?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1481&q=80");
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 160px 0 100px;
  text-align: center;
  margin-top: 80px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    transparent 30%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background-color: var(--secondary);
  color: var(--dark);
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
  line-height: 1.8;
}

.hero-highlights {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.highlight-item i {
  font-size: 32px;
  color: var(--secondary);
  margin-bottom: 5px;
}

.highlight-item span {
  font-size: 16px;
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-hero {
  display: inline-block;
  background-color: var(--secondary);
  color: var(--dark);
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: var(--transition);
  border: 2px solid var(--secondary);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-hero:hover {
  background-color: transparent;
  color: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--white);
  color: var(--dark);
}

/* Kategori Filtreleri */
.categories {
  padding: 80px 0 40px;
  background-color: var(--white);
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  text-align: center;
  margin-bottom: 15px;
  color: var(--primary-dark);
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: var(--secondary);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-subtitle {
  text-align: center;
  color: var(--gray);
  margin-bottom: 40px;
  font-size: 18px;
}

.category-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.filter-btn {
  padding: 12px 28px;
  background-color: var(--light);
  border: 2px solid var(--light);
  border-radius: 30px;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary-dark);
  color: var(--white);
  border-color: var(--primary-dark);
}

/* Menü Öğeleri */
.menu-items {
  padding: 40px 0 80px;
  background-color: var(--light-gray);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.menu-card {
  background-color: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(139, 0, 0, 0.1);
}

.menu-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(44, 24, 16, 0.15);
  border-color: var(--secondary);
}

.card-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.card-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    transparent 70%,
    rgba(44, 24, 16, 0.3) 100%
  );
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.menu-card:hover .card-image img {
  transform: scale(1.1);
}

.card-content {
  padding: 20px;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.card-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-dark);
}

.card-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--secondary);
}

.card-category {
  display: inline-block;
  padding: 5px 15px;
  background-color: var(--light);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.card-description {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.6;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rating {
  color: var(--secondary);
}

.rating span {
  color: var(--gray);
  font-size: 14px;
  margin-left: 5px;
}

.btn-add-cart {
  background-color: var(--primary-dark);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.btn-add-cart:hover {
  background-color: var(--secondary);
  color: var(--dark);
}

.btn-add-cart:disabled {
  background-color: var(--gray);
  cursor: not-allowed;
  opacity: 0.7;
}

/* Hakkımızda Bölümü */
.about-section {
  padding: 80px 0;
  background-color: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text {
  padding-right: 20px;
}

.about-description {
  color: var(--gray);
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature {
  text-align: center;
  padding: 20px;
  background-color: var(--light-gray);
  border-radius: 10px;
  transition: var(--transition);
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.feature i {
  font-size: 32px;
  color: var(--secondary);
  margin-bottom: 15px;
}

.feature h3 {
  font-size: 18px;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.feature p {
  color: var(--gray);
  font-size: 14px;
}

.about-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s;
}

.about-image:hover img {
  transform: scale(1.05);
}

/* İletişim Bölümü */
.contact-section {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 40px;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.contact-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(139, 0, 0, 0.1);
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary);
}

.contact-icon {
  width: 70px;
  height: 70px;
  background-color: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact-icon i {
  font-size: 30px;
  color: var(--primary-dark);
}

.contact-card h3 {
  color: var(--primary-dark);
  margin-bottom: 10px;
  font-size: 20px;
}

.contact-card p {
  color: var(--gray);
  font-size: 16px;
}

.address-note {
  font-size: 14px !important;
  color: var(--secondary) !important;
  font-style: italic;
  margin-top: 5px;
}

.contact-map {
  background-color: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.map-placeholder {
  text-align: center;
  padding: 40px;
}

.map-placeholder i {
  font-size: 80px;
  color: var(--light);
  margin-bottom: 20px;
}

.map-placeholder p {
  color: var(--gray);
  font-size: 18px;
  margin-bottom: 10px;
}

.map-placeholder p:last-child {
  color: var(--secondary);
  font-weight: 600;
}

/* Sipariş Bölümü */
.order-section {
  padding: 80px 0;
  background:
    linear-gradient(rgba(43, 24, 16, 0.9), rgba(43, 24, 16, 0.9)),
    url("https://images.unsplash.com/photo-1565299624946-b28f40a0ae38?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1481&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  text-align: center;
}

.order-content {
  max-width: 900px;
  margin: 0 auto;
}

.order-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 50px 0;
}

.step {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: var(--transition);
}

.step:hover {
  transform: translateY(-5px);
  border-color: var(--secondary);
  background-color: rgba(255, 255, 255, 0.15);
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--secondary);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--white);
}

.step p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

.order-cta {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 15px;
  margin-top: 40px;
  backdrop-filter: blur(10px);
  border: 2px solid var(--secondary);
}

.order-cta h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: var(--white);
}

.order-cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  margin-bottom: 25px;
}

.order-phones {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--secondary);
  color: var(--dark);
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: var(--transition);
}

.phone-link:hover {
  background-color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.phone-link i {
  font-size: 20px;
}

/* Sepet İkonu */
.cart-icon {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--primary-dark);
  color: var(--white);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(139, 0, 0, 0.4);
  z-index: 999;
  transition: var(--transition);
  border: 3px solid var(--secondary);
}

.cart-icon:hover {
  background-color: var(--secondary);
  color: var(--dark);
  transform: scale(1.1);
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: var(--secondary);
  color: var(--dark);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid var(--white);
}

/* Sepet Modal */
.cart-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(44, 24, 16, 0.8);
  z-index: 1001;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
}

.cart-content {
  background-color: var(--white);
  width: 90%;
  max-width: 600px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border: 3px solid var(--secondary);
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  background-color: var(--primary-dark);
  color: var(--white);
  border-bottom: 3px solid var(--secondary);
}

.cart-header h3 {
  font-size: 24px;
  font-family: "Playfair Display", serif;
}

.close-cart {
  font-size: 32px;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}

.close-cart:hover {
  color: var(--secondary);
  transform: scale(1.1);
}

.cart-body {
  padding: 25px;
  max-height: 400px;
  overflow-y: auto;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--light);
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-info {
  flex-grow: 1;
}

.cart-item-name {
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--primary-dark);
  font-size: 18px;
}

.cart-item-price {
  color: var(--secondary);
  font-weight: 700;
  font-size: 16px;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  margin: 0 20px;
}

.quantity-btn {
  background-color: var(--light);
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  font-size: 18px;
  color: var(--primary-dark);
  transition: var(--transition);
}

.quantity-btn:hover {
  background-color: var(--primary-dark);
  color: var(--white);
}

.cart-item-quantity span {
  margin: 0 15px;
  font-weight: 700;
  font-size: 18px;
  min-width: 30px;
  text-align: center;
}

.cart-item-total {
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 18px;
  min-width: 100px;
  text-align: right;
}

.remove-item {
  background-color: var(--primary-light);
  color: var(--white);
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  margin-left: 15px;
  transition: var(--transition);
}

.remove-item:hover {
  background-color: #8b0000;
  transform: rotate(90deg);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  padding: 25px;
  background-color: var(--light);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-dark);
}

.cart-footer {
  display: flex;
  justify-content: space-between;
  padding: 25px;
  gap: 15px;
}

.btn {
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  flex: 1;
}

.btn-cart {
  background-color: var(--light);
  color: var(--dark);
}

.btn-cart:hover {
  background-color: var(--gray);
  color: var(--white);
}

.btn-primary {
  background-color: var(--primary-dark);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--secondary);
  color: var(--dark);
  transform: translateY(-3px);
}

/* Footer */
.footer {
  background-color: var(--dark);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo .logo {
  color: var(--white);
  font-size: 24px;
  margin-bottom: 10px;
}

.footer-logo p {
  margin-top: 10px;
  opacity: 0.8;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.footer-social a:hover {
  background-color: var(--secondary);
  color: var(--dark);
  transform: translateY(-3px);
}

.footer-links h3,
.footer-contact h3,
.footer-hours h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--secondary);
  font-family: "Playfair Display", serif;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
  display: block;
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.footer-contact p,
.footer-hours p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  opacity: 0.8;
}

.footer-contact i,
.footer-hours i {
  margin-right: 10px;
  color: var(--secondary);
  min-width: 20px;
}

.footer-note {
  font-size: 14px;
  color: var(--secondary) !important;
  font-style: italic;
  margin-top: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
  font-size: 14px;
}

.footer-motto {
  color: var(--secondary);
  font-style: italic;
  margin-top: 10px;
  font-weight: 600;
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 40px;
  }

  .menu-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-text {
    padding-right: 0;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .order-steps {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    margin: 15px 0;
  }

  .contact-info {
    display: none;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-highlights {
    gap: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .section-title {
    font-size: 32px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .cart-content {
    width: 95%;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 140px 0 80px;
  }

  .hero-title {
    font-size: 32px;
  }

  .category-filters {
    gap: 10px;
  }

  .filter-btn {
    padding: 10px 20px;
    font-size: 13px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .cart-footer {
    flex-direction: column;
    gap: 10px;
  }

  .btn-cart {
    width: 100%;
    margin: 5px 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .order-phones {
    flex-direction: column;
    align-items: center;
  }

  .phone-link {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}
