body {
  background: url('BG1.jpg') center/cover no-repeat, #f5f6fa;
  min-height: 100dvh;
  font-family: 'Segoe UI', 'Prompt', sans-serif;
}

.container {
  background: rgba(255,255,255,0.13);
  border-radius: 32px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.09);
  padding: 18px 10px 12px 10px;
  max-width: 370px;
  margin: 20px auto 12px auto;
}

.profile-img {
  border-radius: 50%;
  width: 92px;
  height: 92px;
  object-fit: cover;
  border: 4px solid #fff;
  margin: 0 auto 10px auto;
  display: block;
}

#shop-name {
  text-align: center;
  font-size: 1.45rem;
  font-weight: bold;
  margin-bottom: 0.22em;
  margin-top: 0;
  color: #1c2331;
  letter-spacing: 0.02em;
}

#shop-desc {
  text-align: center;
  font-size: 0.95rem;
  color: #595f7a;
  margin-bottom: 0.95em;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 17px;
  margin-bottom: 1em;
}
.social-icons a {
  color: #3a4166;
  font-size: 1.18em;
  opacity: 0.9;
  transition: 0.15s;
  margin: 0;
}
.social-icons a:hover {
  color: #45a3f7;
  opacity: 1;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}

.links a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 6px;
  background: rgba(255,255,255,0.38);
  color: #193a5b;
  border-radius: 18px;
  font-weight: 600;
  font-size: 0.98rem;
  box-shadow: 0 2px 14px rgba(30,45,90,0.04);
  text-decoration: none;
  transition: background 0.25s, color 0.2s, transform 0.18s;
}
.links a:hover {
  background: rgba(255,255,255,0.58);
  color: #2196f3;
  transform: translateY(-2px) scale(1.03);
}
.links a i {
  font-size: 1em;
}

/* Responsive: ปรับสำหรับจอเตี้ย (iPhone รุ่นใหม่/มือถือจอยาว) */
@media (max-height: 800px) {
  .container {
    padding: 8px 6px 8px 6px;
    margin: 10px auto 6px auto;
  }
  .links a {
    font-size: 0.92rem;
    padding: 7px 2px;
    border-radius: 15px;
  }
  .profile-img {
    width: 75px;
    height: 75px;
  }
}
