.nav-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav-links a svg {
  width: 18px;
  height: 18px;
  stroke: #555;
}

.nav-links a:hover {
  color: #000;
}

.nav-links a:hover svg {
  stroke: #000;
}

*, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --primary: #0ea5e9;
      --primary-dark: #0284c7;
      --secondary: #14b8a6;
      --background: #ffffff;
      --background-alt: #f8fafc;
      --foreground: #0f172a;
      --foreground-muted: #64748b;
      --card: #ffffff;
      --card-border: #e2e8f0;
      --gradient: linear-gradient(135deg, #0ea5e9 0%, #14b8a6 100%);
    }

    .dark {
      --primary: #38bdf8;
      --primary-dark: #0ea5e9;
      --secondary: #2dd4bf;
      --background: #0f172a;
      --background-alt: #1e293b;
      --foreground: #f1f5f9;
      --foreground-muted: #94a3b8;
      --card: #1e293b;
      --card-border: #334155;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: var(--background);
      color: var(--foreground);
      line-height: 1.6;
      transition: background-color 0.3s ease, color 0.3s ease;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      height: auto;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--background);
  border-bottom: 1px solid var(--card-border);
  z-index: 9999;
}

    .header.scrolled {
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .header-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 15px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .logo img {
      width: 80px;
      height: auto;
      border-radius: 0;
      object-fit: contain;
    }

    .logo-text {
      font-size: 1.25rem;
      font-weight: 700;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 30px;
    }

    .nav-links {
      display: flex;
      gap: 30px;
      list-style: none;
    }

    .nav-links a {
      font-weight: 500;
      color: var(--foreground-muted);
      transition: color 0.3s ease;
      position: relative;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: var(--primary);
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--gradient);
      transition: width 0.3s ease;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .dark-toggle {
      background: var(--background-alt);
      border: 1px solid var(--card-border);
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      color: var(--foreground);
    }

    .dark-toggle:hover {
      background: var(--primary);
      color: white;
    }

    .dark-toggle svg {
      width: 20px;
      height: 20px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 24px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 0.95rem;
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
    }

    .btn-primary {
      background: var(--gradient);
      color: white;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
    }

    .btn-outline {
      background: transparent;
      border: 2px solid var(--primary);
      color: var(--primary);
    }

    .btn-outline:hover {
      background: var(--primary);
      color: white;
    }

    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 5px;
    }

    .mobile-menu-btn span {
      display: block;
      width: 25px;
      height: 3px;
      background: var(--foreground);
      margin: 5px 0;
      transition: all 0.3s ease;
      border-radius: 2px;
    }

    .page-header {
      padding: 150px 0 80px;
      background: var(--background-alt);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .page-header::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 500px;
      height: 500px;
      background: var(--gradient);
      opacity: 0.05;
      border-radius: 50%;
      animation: float 8s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-30px) rotate(10deg); }
    }

    .page-header h1 {
      font-size: 3rem;
      font-weight: 800;
      margin-bottom: 15px;
      position: relative;
    }

    .page-header h1 span {
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .page-header p {
      color: var(--foreground-muted);
      font-size: 1.2rem;
      max-width: 600px;
      margin: 0 auto;
    }

    .footer {
      background: var(--background);
      border-top: 1px solid var(--card-border);
      padding: 60px 0 30px;
    }

    .footer-content {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer-brand p {
      color: var(--foreground-muted);
      margin: 20px 0;
      line-height: 1.8;
    }

    .footer-social {
      display: flex;
      gap: 12px;
    }

    .footer-social a {
      width: 40px;
      height: 40px;
      background: var(--background-alt);
      border: 1px solid var(--card-border);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .footer-social a:hover {
      background: var(--gradient);
      color: white;
      border-color: transparent;
    }

    .footer-links h4 {
      font-weight: 700;
      margin-bottom: 20px;
    }

    .footer-links ul {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 12px;
    }

    .footer-links a {
      color: var(--foreground-muted);
      transition: color 0.3s ease;
    }

    .footer-links a:hover {
      color: var(--primary);
    }

    .footer-bottom {
      border-top: 1px solid var(--card-border);
      padding-top: 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    .footer-bottom p {
      color: var(--foreground-muted);
      font-size: 0.9rem;
    }

    .footer-bottom-links {
      display: flex;
      gap: 30px;
    }

    .footer-bottom-links a {
      color: var(--foreground-muted);
      font-size: 0.9rem;
      transition: color 0.3s ease;
    }

    .footer-bottom-links a:hover {
      color: var(--primary);
    }

.mobile-menu {
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  background: var(--background);
  border-bottom: 1px solid var(--card-border);
  padding: 20px;
  z-index: 999999;
  display: none;
}

.mobile-menu.active {
  display: block;
}

     .mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

    .mobile-menu ul {
      list-style: none;
    }

    .mobile-menu li {
      padding: 15px 0;
      border-bottom: 1px solid var(--card-border);
    }

    .mobile-menu a {
      font-weight: 500;
      font-size: 1.1rem;
    }

    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .stagger-1 { transition-delay: 0.1s; }
    .stagger-2 { transition-delay: 0.2s; }
    .stagger-3 { transition-delay: 0.3s; }
    .stagger-4 { transition-delay: 0.4s; }
    .stagger-5 { transition-delay: 0.5s; }
    .stagger-6 { transition-delay: 0.6s; }

    @media (max-width: 1024px) {
      .footer-content {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }

      .nav-actions .btn {
        display: none;
      }

      .mobile-menu-btn {
        display: block;
      }

      .page-header {
        padding: 120px 0 60px;
      }

      .page-header h1 {
        font-size: 2rem;
      }

      .page-header p {
        font-size: 1rem;
      }

      .newsletter {
        padding: 60px 0;
      }

      .newsletter h2 {
        font-size: 1.8rem;
      }

      .newsletter-form {
        flex-direction: column;
      }

      .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .footer-social {
        justify-content: center;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }

      .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
      }
    }

    @media (max-width: 480px) {
      .container {
        padding: 0 15px;
      }
    }
	#backToTop {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  color: var(--primary);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 999;
}

#backToTop svg {
  width: 20px;
  height: 20px;
  transition: 0.3s;
}

#backToTop:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-4px) scale(1.05);
}

#backToTop:hover svg {
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .footer-brand {
    text-align: center;
  }

  .footer-brand .logo {
    display: inline-block;
  }
}

:root {
  --bg-card: #ffffff;
  --text-main: #111;
  --text-muted: #666;
  --border-color: rgba(0,0,0,0.08);
  --accent: #3b82f6;
}

body.dark {
  --bg-card: #0f0f0f;
  --text-main: #f5f5f5;
  --text-muted: #aaa;
  --border-color: rgba(255,255,255,0.08);
}

.price {
  font-size: 32px;
  margin: 10px 0 20px;
  color: var(--text-main);
}

.featured {
  border: 1.5px solid var(--accent);
  padding-top: 20px;
}

#sideTab {
  position: fixed;
  bottom: 140px;
  left: 0;
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  color: white;
  padding: 14px 20px;
  border-radius: 0 14px 14px 0;
  font-weight: 600;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

#sideTab span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 13px;
  letter-spacing: 0.5px;
}

#sideTab:hover {
  padding-left: 24px;
}

#sidePopup {
  position: fixed;
  bottom: 120px;
  left: -320px;
  width: 300px;
  background: linear-gradient(145deg, rgba(15,23,42,0.95), rgba(30,41,59,0.95));
  backdrop-filter: blur(14px);
  color: white;
  border-radius: 0 18px 18px 0;
  padding: 22px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.35);
  transition: all 0.4s ease;
  z-index: 9999;
}

#sidePopup.active {
  left: 0;
}

#sidePopup h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
}

#sidePopup p {
  font-size: 14px;
  color: #cbd5f5;
  margin-bottom: 18px;
  line-height: 1.6;
}

.popup-btn {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  padding: 12px;
  border-radius: 12px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.popup-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(14,165,233,0.4);
}

#closePopup {
  position: absolute;
  top: 10px;
  right: 12px;
  background: rgba(255,255,255,0.9);
  color: black;
  border: none;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  cursor: pointer;
}

@media (max-width: 768px) {
  #sideTab,
  #sidePopup {
    display: none !important;
  }
}
:root {
  --card-bg: #ffffff;
  --text-main: #111;
  --text-muted: #666;
  --border: rgba(0,0,0,0.06);
  --accent: #3b82f6;
}

body.dark {
  --card-bg: #0f0f0f;
  --text-main: #f5f5f5;
  --text-muted: #aaa;
  --border: rgba(255,255,255,0.06);
}

.products {
  padding: 70px 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.product-content {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(128,128,128,0.1);
  color: var(--text-muted);
  margin-bottom: 8px;
  width: fit-content;
}

.product-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 10px;
  line-height: 1.4;
}

.product-meta {
  margin-bottom: 16px;
}

.price {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
}

.btn-buy {
  margin-top: auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-radius: 999px;
  font-size: 13px;
  text-decoration: none;
  border: 1px solid var(--border);
  color: var(--text-main);
  transition: all 0.2s ease;
}

.btn-buy:hover {
  border-color: var(--accent);
  color: var(--accent);
}

@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

img {
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  pointer-events: none;
}

img:not(a img) {
  pointer-events: none;
}

a img {
  pointer-events: auto;
}