@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

:root {
  --gm-primary: #007bff;
  --gm-text-primary: #333;
}

body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
}

#gm-header {
  background: white;
  border-bottom: 1px solid #ddd;
  padding: 0.5rem 1rem;
}

#gm-root-view {
  min-height: calc(100vh - 60px);
}
.gm-price {
  font-size: 26px;
  font-weight: 700;
}

.gm-title {
  font-size: 20px;
  margin: 8px 0;
}

.gm-subline {
  color: #666;
  font-size: 14px;
}

.gm-section {
  margin-top: 20px;
}

.gm-section h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.gm-description {
  line-height: 1.5;
}

.gm-seller-card {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gm-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e4e6eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.gm-chat-btn {
  margin-top: 24px;
  width: 100%;
  padding: 14px;
  background: #1877f2;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
}
