/* ===== Profile Header ===== */
.profile-header {
  background: linear-gradient(135deg, #e84b3a 0%, #ff8c42 100%);
  padding: 20px 16px 0;
  margin-bottom: 10px;
  border-radius: 0 0 20px 20px;
}

.profile-info {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.avatar {
  width: 58px;
  height: 58px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.avatar-vip {
  position: absolute;
  bottom: -2px;
  right: -2px;
  background: #ffd700;
  color: #8b5e00;
  font-size: 9px;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 8px;
}

.user-info {
  flex: 1;
}

.user-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.user-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
}

.login-btn {
  background: rgba(255,255,255,0.2);
  border: 1.5px solid rgba(255,255,255,0.7);
  color: #fff;
  border-radius: 18px;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  flex-shrink: 0;
}

/* ===== User Stats ===== */
.user-stats {
  background: rgba(255,255,255,0.15);
  border-radius: 12px 12px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 10px 0;
}

.stat-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6px 0;
  cursor: pointer;
  border-right: 1px solid rgba(255,255,255,0.2);
}

.stat-cell:last-child {
  border-right: none;
}

.stat-val {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 3px;
}

.stat-name {
  font-size: 11px;
  color: rgba(255,255,255,0.8);
}

/* ===== Order Section ===== */
.order-section {
  background: #fff;
  margin-bottom: 10px;
}

.order-title {
  font-size: 15px;
  font-weight: 600;
  padding: 14px 16px 10px;
  color: #222;
}

.order-tabs {
  display: flex;
  padding: 0 16px;
  border-bottom: 1px solid #f0f0f0;
  gap: 0;
  overflow-x: auto;
}

.order-tabs::-webkit-scrollbar {
  display: none;
}

.order-tab {
  flex-shrink: 0;
  padding: 10px 14px;
  font-size: 13px;
  color: #999;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}

.order-tab.active {
  color: #e84b3a;
  border-bottom-color: #e84b3a;
  font-weight: 600;
}

/* ===== Order Card ===== */
.order-list {
  padding: 10px 16px;
}

.order-card {
  border: 1.5px solid #f0f0f0;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
}

.order-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: #fafafa;
  border-bottom: 1px solid #f0f0f0;
}

.order-hotel-name-sm {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.order-status {
  font-size: 12px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
}

.status-upcoming {
  color: #2979ff;
  background: #eef4ff;
}

.status-completed {
  color: #07c160;
  background: #f0faf5;
}

.status-pending {
  color: #ff9900;
  background: #fff8ee;
}

.status-cancelled {
  color: #bbb;
  background: #f5f5f5;
}

.order-card-body {
  display: flex;
  gap: 12px;
  padding: 12px 14px;
  align-items: flex-start;
}

.order-room-img {
  width: 80px;
  height: 60px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.order-room-detail {
  flex: 1;
}

.order-room-name {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
}

.order-room-date {
  font-size: 12px;
  color: #999;
  margin-bottom: 3px;
}

.order-room-guests {
  font-size: 12px;
  color: #999;
}

.order-price-col {
  text-align: right;
  flex-shrink: 0;
}

.order-price {
  font-size: 18px;
  font-weight: 700;
  color: #e84b3a;
}

.order-price-label {
  font-size: 11px;
  color: #bbb;
}

.order-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-top: 1px solid #f0f0f0;
}

.order-no-text {
  font-size: 11px;
  color: #ccc;
}

.order-actions {
  display: flex;
  gap: 8px;
}

.order-btn-outline {
  border: 1px solid #ddd;
  background: #fff;
  color: #666;
  border-radius: 14px;
  padding: 6px 12px;
  font-size: 12px;
  cursor: pointer;
}

.order-btn-primary {
  border: none;
  background: linear-gradient(135deg, #e84b3a, #ff7961);
  color: #fff;
  border-radius: 14px;
  padding: 6px 12px;
  font-size: 12px;
  cursor: pointer;
}

/* ===== Menu Section ===== */
.menu-section {
  background: #fff;
  margin-bottom: 10px;
  padding: 16px 16px 0;
}

.menu-title {
  font-size: 13px;
  font-weight: 600;
  color: #bbb;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.menu-list {
  display: flex;
  flex-direction: column;
}

.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #f5f5f5;
  cursor: pointer;
  text-decoration: none;
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-icon {
  font-size: 20px;
  width: 24px;
  text-align: center;
}

.menu-name {
  font-size: 14px;
  color: #333;
}

.menu-right {
  display: flex;
  align-items: center;
  gap: 6px;
}

.menu-badge {
  font-size: 11px;
  color: #e84b3a;
  background: #fff5f3;
  padding: 2px 7px;
  border-radius: 3px;
}

.menu-tag {
  font-size: 10px;
  padding: 1px 6px;
  border-radius: 3px;
}

.menu-tag.online {
  background: #f0faf5;
  color: #07c160;
}

.menu-arrow {
  color: #ddd;
  font-size: 18px;
}

/* ===== Company Info ===== */
.company-info {
  text-align: center;
  padding: 20px 16px 90px;
  color: #ccc;
  font-size: 11px;
  line-height: 2.2;
}

.company-info a {
  color: #ccc;
}

/* ===== Login Sheet ===== */
.login-subtitle {
  font-size: 13px;
  color: #999;
  text-align: center;
  margin-bottom: 20px;
}

.sms-group {
  display: flex;
  gap: 10px;
  align-items: flex-end;
}

.sms-group .form-input {
  flex: 1;
}

.sms-btn {
  flex-shrink: 0;
  background: #fff5f3;
  color: #e84b3a;
  border: 1px solid #ffd0c8;
  border-radius: 8px;
  padding: 11px 12px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.sms-btn:disabled {
  background: #f5f5f5;
  color: #bbb;
  border-color: #eee;
}

.login-agree {
  text-align: center;
  font-size: 12px;
  color: #bbb;
  margin-top: 14px;
}

.third-login {
  margin-top: 20px;
}

.third-divider {
  text-align: center;
  font-size: 12px;
  color: #ddd;
  position: relative;
  margin-bottom: 16px;
}

.third-divider::before,
.third-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30%;
  height: 1px;
  background: #f0f0f0;
}

.third-divider::before { left: 5%; }
.third-divider::after { right: 5%; }

.third-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.third-icon-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f5f5f5;
  border: none;
  font-size: 24px;
  cursor: pointer;
}
