/* VelocityShift — Shop Navigation & Layout */
/* Core nav, product grid, form elements */

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* SHOP NAV */
.shop-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(232, 55, 74, 0.12);
}
.shop-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.shop-nav-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.shop-nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  justify-content: flex-end;
}
.shop-nav-links a {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-2);
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.shop-nav-links a:hover { color: var(--fg); }
.shop-nav-cart {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-2);
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.shop-nav-cart:hover { color: var(--fg); }

@media (max-width: 768px) {
  .shop-nav-inner { gap: 12px; }
  .shop-nav-brand { font-size: 18px; }
  .search-bar { display: none; }
}
@media (max-width: 480px) {
  .shop-nav-links { display: none; }
}

/* PRODUCT GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* PRODUCT CARD — already in shop-animations.css, these extend */
.product-card {
  display: block;
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.product-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--bg-3);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 2;
}
.product-card-body {
  padding: 16px;
}
.product-card-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
  line-height: 1.3;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.product-card-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.price-current {
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
}
.price-compare {
  font-size: 13px;
  color: var(--fg-3);
  text-decoration: line-through;
}

/* FORMS */
.form-input, .form-select {
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--fg);
  padding: 12px 14px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
}
.form-select option { background: var(--bg-2); }
.form-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-2);
  margin-bottom: 6px;
  font-weight: 500;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  text-align: center;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--fg);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}