.btn-login,
.btn-create-profile {
  border-radius: var(--border-radius);

  padding: 0.5rem 1.5rem;

  font-weight: 500;
}

.btn-login {
  background-color: var(--secondary-color);

  color: var(--text-white);
}

.btn-create-profile {
  background-color: var(--text-gray);

  color: var(--text-white);
}

.profile-container {
  max-width: 1280px;

  margin: 0 auto;

  padding: 2rem 1rem;
}

.profile-grid {
  display: grid;

  grid-template-columns: 2fr 1fr;

  gap: 2rem;
}

.profile-card {
  background: var(--white);

  border-radius: var(--border-radius);

  box-shadow: var(--shadow);

  padding: 1.5rem;

  margin-bottom: 1.5rem;
}

.profile-image {
  width: auto;

  max-height: 500px;

  object-fit: contain;

  border-radius: var(--border-radius);

  box-shadow: var(--shadow-color-dark);
}

.profile-details .info-item {
  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 0.75rem;

  background: var(--sidebar-bg);

  border-radius: 0.5rem;

  margin-bottom: 0.5rem;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.profile-details .info-item:hover {
  background: var(--secondary-color);

  color: var(--text-white);

  transform: translateY(-3px);
}

.profile-details .info-label {
  font-weight: 500;

  color: var(--text-gray);
}

.profile-details .info-value {
  font-weight: 400;
}

.profile-details .info-item:hover .info-label,
.profile-details .info-item:hover .info-value {
  color: var(--text-white);
}

.service-block {
  background: var(--sidebar-bg);

  border-radius: 0.75rem;

  padding: 1rem;

  margin-bottom: 1rem;

  display: flex;

  justify-content: space-between;

  align-items: center;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.service-block:hover {
  transform: translateY(-3px);

  background: var(--secondary-color);

  color: var(--text-white);
}

.service-block .service-name {
  font-weight: 600;
}

.service-block .service-price {
  color: var(--primary-color);

  font-weight: 500;
}

.service-block:hover .service-price {
  color: var(--text-white);
}

.service-list {
  display: flex;

  flex-wrap: wrap;

  gap: 0.5rem;

  margin-top: 1rem;
}

.service-item {
  background: var(--primary-color);

  color: var(--text-white);

  padding: 0.5rem 1rem;

  border-radius: 2rem;

  font-size: 0.85rem;

  transition: background 0.2s ease;
}

.service-item:hover {
  background: var(--tag-hover);
}

.tag {
  display: inline-flex;

  align-items: center;

  background: transparent;

  color: var(--tag-border);

  border: 1px solid var(--tag-border);

  padding: 0.5rem 1rem;

  border-radius: 2rem;

  margin: 0.3rem;

  font-size: 0.85rem;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.tag:hover {
  transform: translateY(-2px);

  background: var(--tag-hover);

  color: var(--text-white);

  border-color: var(--tag-hover);
}

.cta-button {
  display: inline-flex;

  align-items: center;

  gap: 0.5rem;

  background: var(--primary-color);

  color: var(--text-white);

  padding: 0.75rem 1.5rem;

  border-radius: var(--border-radius);

  text-decoration: none;

  font-weight: 500;

  transition:
    background 0.3s ease,
    transform 0.2s ease;
}

.cta-button:hover {
  background: var(--secondary-color);

  transform: translateY(-2px);
}

.sidebar {
  position: sticky;

  top: 100px;
}

.sidebar-card {
  background: var(--white);

  border-radius: var(--border-radius);

  padding: 1.5rem;

  box-shadow: var(--shadow);
}

.quick-info .info-item {
  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 0.75rem;

  background: var(--sidebar-bg);

  border-radius: 0.5rem;

  margin-bottom: 0.5rem;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.quick-info .info-item:hover {
  background: var(--secondary-color);

  color: var(--text-white);

  transform: translateY(-3px);
}

.quick-info .info-item:hover .info-label,
.quick-info .info-item:hover .info-value,
.quick-info .info-item:hover .badge {
  color: var(--text-white);
}

.related-profile {
  display: flex;

  align-items: center;

  gap: 1rem;

  padding: 1rem 0;

  border-bottom: 1px solid var(--shadow-color);
}

.related-profile img {
  width: 60px;

  height: 60px;

  border-radius: 0.5rem;

  object-fit: cover;

  border: 3px solid var(--primary-color);
}

.testimonials .card {
  border: none;

  border-radius: var(--border-radius);

  margin-bottom: 1rem;

  background: var(--sidebar-bg);
}

.mobile-cta {
  display: none;

  position: fixed;

  bottom: 0;

  left: 0;

  right: 0;

  background: var(--white);

  padding: 0.75rem;

  box-shadow: var(--shadow-color-dark);

  z-index: 1000;

  display: flex;

  justify-content: space-around;

  align-items: center;
}

.mobile-cta .cta-button {
  padding: 0.5rem 1rem;

  font-size: 0.85rem;
}

@media (max-width: 992px) {
  .profile-grid {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  .profile-image {
    max-height: 400px;
  }
}

@media (max-width: 768px) {
  .profile-image {
    max-height: 300px;
  }

  .profile-details .info-item,
  .quick-info .info-item {
    font-size: 0.9rem;
  }

  .mobile-cta {
    display: flex;
  }

  .desktop-cta {
    display: none;
  }
}

@media (max-width: 576px) {
  .profile-container {
    padding: 1rem;
  }

  .profile-details .info-item,
  .quick-info .info-item {
    flex-direction: column;

    align-items: flex-start;

    gap: 0.25rem;
  }

  .profile-details .info-label,
  .quick-info .info-label {
    font-weight: 600;
  }

  .profile-card {
    padding: 1rem;
  }

  .service-block {
    flex-direction: column;

    align-items: flex-start;

    gap: 0.5rem;
  }
}
.watermark2 {
  position: relative;
}
.watermark2::before {
  content: "Nyraescorts";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(339deg);
  font-size: 26px;
  font-weight: 700;
  color: rgb(13 110 253);
  white-space: nowrap;
  pointer-events: none;
  text-transform: lowercase;
  z-index: 101;
}
