
.site-header {
  background-color: var(--header-bg);
  width: 100%;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  z-index: 1002;
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 12px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 65px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  color: var(--nav-text-color);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s ease, border-color 0.2s ease;
  padding: 5px 0;
  border-bottom: 2px solid transparent;
}

.nav-link:hover {
  color: var(--accent-hover);
  border-bottom-color: var(--accent-color);
}

.nav-link.active {
  color: #000000;
  border-bottom: 2px solid var(--accent-color);
}

.site-footer {
  background-color: #ffffff;
  border-top: 1px solid var(--border-color);
  padding: 40px 0;
  margin-top: auto;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-logo-img {
  height: 45px;
}

.footer-logo p {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent-color);
}


.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: transparent;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1001;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  flex-direction: column;
  gap: 5px;
  z-index: 1003;
}

.mobile-toggle span {
  display: block;
  width: 25px;
  height: 2.5px;
  background-color: var(--text-color);
  transition: all 0.3s ease;
  border-radius: 2px;
}

@media (max-width: 768px) {
  body {
    touch-action: manipulation;
  }

  .mobile-toggle {
    display: flex;
  }

  .header-inner {
    padding: 15px 20px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  nav#main-nav {
    display: block !important;
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100vh;
    background-color: #faf7f2;
    box-shadow: 4px 0 25px rgba(0, 0, 0, 0.15);
    padding: 80px 25px 30px;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1005;
    overflow-y: auto;
    border-right: 1px solid var(--border-color);
  }

  nav#main-nav.active {
    transform: translateX(280px);
  }

  .nav-menu {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }

  .nav-link {
    font-size: 16px;
    width: 100%;
    display: block;
    padding: 8px 0;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }

  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  .offer-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .offer-img {
    max-height: 280px;
    width: 100%;
    object-fit: cover;
  }

  .footer-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
