body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

.phone {
  max-width: 420px;
  margin: 0 auto;
  background: #fff;
  min-height: 100vh;
}

.topbar {
  background: #1E1F23;
  color: #fff;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #2A2B30;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
}

.brand-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #FF8A00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #101014;
}

.highlight {
  color: #FF8A00;
}

.content {
  padding: 18px 14px 26px;
}

.title {
  font-weight: bold;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 18px;
  position: relative;
}

.title::after {
  content: "";
  display: block;
  width: 84px;
  height: 3px;
  background: #FF8A00;
  border-radius: 2px;
  margin-top: 8px;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 14px rgba(17,24,39,.08);
  overflow: hidden;
  padding-bottom: 12px;
  text-align: center;
}

.thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.name {
  font-size: 14px;
  font-weight: bold;
  margin: 10px 0 4px;
  min-height: 38px;
}

.price {
  font-weight: bold;
  font-size: 18px;
  margin: 8px 0 4px;
}

.product-form {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 10px;
}

select, input[type=number], input[type=text], input[type=email], textarea {
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
}

textarea {
  resize: vertical;
}

.btn {
  background: #fff;
  border: 2px solid #FF8A00;
  color: #1a1005;
  font-weight: bold;
  padding: 10px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn:hover {
  background: #FF8A00;
  color: #fff;
}
