@font-face {
  font-family: 'Signature';
  src: local('Reenie Beanie'), url('https://fonts.gstatic.com/s/reeniebeanie/v16/dSpqYSpLvZsq93H16jUB-DHn54r6.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-main: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-signature: 'Signature', 'Reenie Beanie', cursive;
  --border-color: #000000;
  --bg-color: #ffffff;
  --text-dark: #000000;
  --text-muted: #555555;
  --placeholder-color: #bebbb5;
  --accent-light: #f5f3ef;
  --card-bg-glass: rgba(255, 255, 255, 0.48);
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-dark);
  line-height: 1.45;
}

button, .btn {
  min-height: 44px;
  touch-action: manipulation;
}

.navbar-wrapper {
  position: fixed;
  top: 12px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 1000;
  padding: 0 12px;
  pointer-events: none;
}

.navbar {
  pointer-events: auto;
  width: 100%;
  max-width: 1140px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 12px;
  background-color: rgba(255,255,255,0.9);
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
}

.menu-btn, .cart-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.cart-badge {
  background: #000;
  color: #fff;
  font-size: 0.65rem;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
}

.brand-logo {
  text-decoration: none;
  color: #000;
  font-weight: 700;
  font-size: 1.25rem;
}

.nav-drawer {
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.navbar.expanded .nav-drawer {
  max-height: 400px;
  opacity: 1;
}

.nav-links {
  list-style: none;
  padding: 16px;
}

.nav-links li {
  margin-bottom: 8px;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

#netsorna-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: rgba(0,0,0,0.9);
  color: #fff;
  padding: 12px 20px;
  border-radius: 4px;
  font-size: 0.85rem;
  z-index: 99999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
}

#netsorna-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid var(--border-color);
  cursor: pointer;
  background: transparent;
  color: #000;
}

.btn-solid {
  background: #000;
  color: #fff;
}

.btn-outline {
  border: 1px solid #000;
}

.btn-subtle {
  background: #f0f0f0;
  border: none;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  padding: 16px;
}

.product-card {
  border: 1px solid #eee;
  padding: 12px;
  border-radius: 4px;
}

.product-image-container {
  display: block;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #f9f9f9;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  margin-top: 12px;
}

.product-title {
  font-size: 0.95rem;
  font-weight: 600;
}

.price {
  font-weight: 500;
  margin-top: 4px;
}

.site-footer {
  background: #fafafa;
  border-top: 1px solid #eee;
  padding: 40px 16px;
  margin-top: 60px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.footer-links-group ul {
  list-style: none;
}

.footer-links-group a {
  text-decoration: none;
  color: #666;
  font-size: 0.85rem;
}
