body {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(243, 245, 247, 0.86)),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.035) 0 1px, transparent 1px 12px);
}

.metal-texture {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(243, 245, 247, 0.88)),
    repeating-linear-gradient(100deg, rgba(11, 13, 15, 0.04) 0 1px, transparent 1px 13px);
}

.nav-link {
  position: relative;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: #f47a20;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.slider-btn,
.social-icon {
  display: grid;
  place-items: center;
  border-radius: 8px;
  font-weight: 900;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.slider-btn {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(11, 13, 15, 0.12);
  background: white;
  color: #0b0d0f;
}

.slider-btn:hover {
  transform: translateY(-2px);
  background: #0b0d0f;
  color: white;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.social-icon:hover {
  transform: translateY(-2px);
  background: #f47a20;
}

.form-field {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(11, 13, 15, 0.14);
  border-radius: 8px;
  padding: 12px 14px;
  color: #171a1d;
  outline: none;
}

.form-field:focus {
  border-color: #f47a20;
  box-shadow: 0 0 0 4px rgba(244, 122, 32, 0.14);
}

.product-art,
.industrial-art {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.95), transparent 18%),
    linear-gradient(135deg, #f8fafc, #8f99a4 48%, #eef1f5);
}

.product-art::before {
  position: absolute;
  right: 16%;
  bottom: 18%;
  left: 16%;
  height: 48%;
  border: 8px solid rgba(255, 255, 255, 0.65);
  border-radius: 50% 50% 12px 12px;
  background: linear-gradient(180deg, #f7f9fb, #9fa7af);
  box-shadow: 0 22px 40px rgba(11, 13, 15, 0.18);
  content: "";
}

.product-art::after {
  position: absolute;
  right: 26%;
  bottom: 60%;
  left: 26%;
  height: 12%;
  border-radius: 999px;
  background: linear-gradient(90deg, #b3bbc4, #ffffff, #9aa3ad);
  content: "";
}

.product-art.plates::before {
  right: 12%;
  bottom: 22%;
  left: 12%;
  height: 12%;
  border-radius: 999px;
  box-shadow:
    0 -22px 0 rgba(181, 190, 199, 0.85),
    0 -44px 0 rgba(225, 229, 233, 0.9),
    0 26px 38px rgba(11, 13, 15, 0.16);
}

.product-art.steamer::before {
  right: 18%;
  left: 18%;
  height: 56%;
}

.product-art.utensils::before {
  right: 23%;
  bottom: 18%;
  left: 23%;
  height: 52%;
  border-radius: 12px 12px 50% 50%;
}

.industrial-art.sheet {
  background:
    repeating-linear-gradient(100deg, #f9fafb 0 18px, #b7c0c9 18px 28px, #e4e8ec 28px 46px);
}

.industrial-art.scrap {
  background:
    radial-gradient(circle at 25% 25%, #f3f5f7 0 9%, transparent 10%),
    radial-gradient(circle at 70% 35%, #b8c0c8 0 12%, transparent 13%),
    radial-gradient(circle at 35% 75%, #eceff2 0 11%, transparent 12%),
    linear-gradient(135deg, #7f8992, #eff2f5 54%, #565f67);
}

.scrap-card {
  min-height: 190px;
  display: grid;
  align-content: end;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 9px);
  color: white;
  font-weight: 900;
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.scrap-card span {
  width: max-content;
  border-radius: 999px;
  background: rgba(244, 122, 32, 0.16);
  padding: 6px 10px;
  color: #f47a20;
  font-size: 0.76rem;
}

.scrap-card h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.25;
}

.scrap-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.55;
}

.scrap-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 122, 32, 0.7);
}
