/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ========================= */
/* 🔥 HEADER (CLEAN WHITE) */
/* ========================= */
/* ========================= */
/* 🔥 NAVBAR DAHA BÖYÜK + GENİŞ */
/* ========================= */

/* Logo böyüsün */
.headerLogo h1 {
  color: #111;
  font-size: 30px;
}

/* Navbar linklər */

/* Search böyüsün */
.headerSearch input {
  height: 40px;
  font-size: 15px;
  border-radius: 12px;
}

/* ========================= */
/* 🔥 ICONLAR DAHA BÖYÜK */
/* ========================= */

.iconBtn {
  padding: 8px;
}

.imgIcon {
  width: 22px;
}

/* ========================= */
/* 🔥 ÜMUMİ FONT BÖYÜT */
/* ========================= */

body {
  font-size: 15px;
}

.header {
  font-family: Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 50px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  position: sticky;
  top: 0;
  z-index: 10000;
  transition: 0.3s;
  border-bottom: 1px solid #eee;
}

/* Scroll olanda */
.header.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Logo */

/* ========================= */
/* 🔥 SEARCH */
/* ========================= */

.headerSearch {
  flex: 1;
  display: flex;
  justify-content: center;
}

.headerSearch input {
  width: 350px;
  height: 36px;
  border-radius: 10px;
  border: none;
  background: #f3f4f6;
  padding: 0 15px;
  font-size: 14px;
  transition: 0.3s;
}

.headerSearch input:focus {
  background: white;
  outline: 2px solid #3b82f6;
}

/* ========================= */
/* 🔥 NAVBAR */
/* ========================= */

.headerNavbar {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Links */
.headerNavbar a,
.dropbtn {
  font-size: 17px;
  padding: 8px 12px;
  color: #333;
  text-decoration: none;
  position: relative;
  border-radius: 6px;
  transition: 0.25s;
  background: none;
  border: none;
  cursor: pointer;
}

/* Soft hover */
.headerNavbar a:hover,
.dropbtn:hover {
  background: #f1f5f9;
  color: #2563eb;
}

/* Underline */
.headerNavbar a::after,
.dropbtn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: #2563eb;
  transition: 0.3s;
}

.headerNavbar a:hover::after,
.dropbtn:hover::after {
  width: 100%;
}

/* ========================= */
/* 🔥 DROPDOWN */
/* ========================= */

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 40px;
  left: 0;
  background: white;
  border-radius: 12px;
  min-width: 170px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  animation: fadeIn 0.2s ease;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  padding: 12px 15px;
  display: block;
  color: #111;
}

.dropdown-content a:hover {
  background: #f1f5f9;
}

/* ========================= */
/* 🔥 ICONS */
/* ========================= */

.iconBtn {
  background: #f3f4f6;
  border-radius: 8px;
  padding: 6px;
  transition: 0.2s;
}

.iconBtn:hover {
  background: #e0e7ff;
  transform: scale(1.05);
}

.imgIcon {
  width: 20px;
}

/* ========================= */
/* 🔥 SIDE PANEL (SƏBƏT) */
/* ========================= */

.side-panel {
  position: fixed;
  top: 0;
  right: -350px;
  width: 350px;
  height: 100%;
  background: #fff;
  box-shadow: -3px 0 15px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition: 0.3s;
  overflow-y: auto;
}

.side-panel.activebasket {
  right: 0;
}

.panel-content {
  padding: 20px;
}

.side-panel h2 {
  text-align: center;
  margin-bottom: 15px;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: red;
  color: white;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
}

/* ========================= */
/* 🔥 ANIMATION */
/* ========================= */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer {
  background: linear-gradient(135deg, #0f172a, #020617);
  color: #fff;
  margin-top: 60px;
  padding-top: 40px;
}

/* container daha dar və ortalanmış */
.footer-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 0 20px 40px;
}

/* hər blok eyni ölçüdə */
.footer-logo,
.footer-links,
.footer-contact {
  flex: 1;
}

/* LOGO */
.footer-logo h2 {
  font-size: 22px;
  margin-bottom: 8px;
  color: #3b82f6;
}

.footer-logo p {
  font-size: 14px;
  color: #cbd5e1;
  margin-bottom: 15px;
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 32px;
  height: 32px;
  background: #1e293b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.social-icons img {
  width: 16px;
}

.social-icons a:hover {
  background: #3b82f6;
  transform: translateY(-3px);
}

/* TITLES */
.footer h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #e2e8f0;
}

/* LINKS */
.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 6px;
}

.footer ul li a {
  text-decoration: none;
  color: #94a3b8;
  font-size: 14px;
  transition: 0.3s;
}

.footer ul li a:hover {
  color: #3b82f6;
  padding-left: 5px;
}

/* CONTACT */
.footer-contact p {
  font-size: 14px;
  margin-bottom: 8px;
  color: #94a3b8;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  padding: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 13px;
  color: #64748b;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}
/* ================= FANCY MOBILE MENU ================= */

/* ================= FANCY MOBILE MENU ================= */

.menu-trigger {
  display: none;
  position: relative;
  width: 50px;
  height: 100%;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  z-index: 10001;
}

/* MENU yazisini gizlet */
.menu-trigger > p {
  display: none;
}

/* bars */
.bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bars span {
  width: 25px;
  height: 4px;
  background: #333;
  transition: 0.4s;
}

/* menu panel */
.menu {
  top: 67px !important;
  height: calc(100vh - 80px) !important;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 260px;
  background: white;
  border-right: 1px solid #eee;
  transform: translateX(-100%);
  transition: 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  padding: 80px 25px;
  z-index: 9990;
}

/* active */
.menu-trigger.active .menu {
  transform: translateX(0);
}

/* ================= MENU CONTENT ================= */

.menu ul {
  list-style: none;
}

.menu ul li {
  margin: 15px 0;
}

.menu ul li a {
  text-decoration: none;
  color: #111;
  font-size: 18px;
  font-weight: 500;
}

/* animation */
.menu ul li p {
  transform: translateY(100%);
  transition: 0.4s;
}

.menu-trigger.active .menu ul li p {
  transform: translateY(0);
}

/* ================= SEARCH MENU ICINDE ================= */

.mobileSearch input {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: #f3f4f6;
  margin-bottom: 20px;
  font-size: 14px;
}

/* ================= ICONLAR MENU ICINDE ================= */

.mobileIcons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

.mobileIcons img {
  width: 24px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  /* ❗ SADƏCƏ TEXT LINKLƏRİ GİZLƏT */
  .headerNavbar a:not(.iconBtn),
  .dropdown {
    display: none;
  }

  /* ✔️ ICONLAR QALSIN */
  .iconBtn {
    display: inline-flex;
  }

  /* ❗ HEADER SEARCH GİZLƏNSİN */
  .headerSearch {
    display: none;
  }

  /* ✔️ MENU ICON GÖRÜNSÜN */
  .menu-trigger {
    display: flex;
  }

  .header {
    padding: 15px 20px;
  }
}
