.perfil-main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 60px;
  background: linear-gradient(160deg, #f8f8f8 0%, #efefef 100%);
}
header {
  box-shadow: 0px -1px 12px rgba(0, 0, 0, 0.25);
  color: #ffffff;
}
header .menu a {
  color: #000000;
}
header .logo img {
  filter: none;
}
header .btn #spn1, #spn2, #spn3 {
  background-color: #101010;
}
header .user img {
  filter: invert(100%) sepia(50%) saturate(2%) hue-rotate(62deg)
    brightness(107%) contrast(101%);
}
header .Bag .buy {
  filter: invert(100%) sepia(50%) saturate(2%) hue-rotate(62deg)
    brightness(107%) contrast(101%);
}
header .count-products {
  background: #000000;
  color: #f0f0f0;
  border: 1px solid #f0f0f0;
}
header .count-products span {
  color:#f0f0f0;
}
.perfil-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.perfil-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #048d98, #6639c5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.perfil-avatar img {
  width: 48px;
  height: 48px;
  filter: brightness(0) invert(1);
}

.perfil-info {
  text-align: center;
}
.perfil-info h1 {
  font-size: 1.6rem;
  font-weight: 500;
  color: #222;
  margin: 0 0 4px;
}
.perfil-email {
  font-size: 14px;
  color: #888;
  margin: 0;
}

.perfil-datos {
  width: 100%;
  border-top: 1px solid #eee;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dato-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
}
.dato-label {
  color: #999;
  font-weight: 400;
}
.dato-value {
  color: #333;
  font-weight: 500;
}

.perfil-logout-btn {
  width: 100%;
  height: 46px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(90deg, #048d98, #6639c5);
  color: #fff;
  font-size: 16px;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  transition: opacity 0.2s;
}
.perfil-logout-btn:hover { opacity: 0.88; }

@media (max-width: 520px) {
  .perfil-card { padding: 36px 22px; }
}
