/* ── Buttons ── */

.btn {
  font-weight: 600;
  transition: var(--transition-default);
  padding: 1rem;
  width: 8rem;
  border-radius: var(--border-radius-lg);
}

.btn-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.btn-color-1,
.btn-color-2 {
  border: var(--color-border-dark) 0.1rem solid;
}

.btn-color-1:hover,
.btn-color-2:hover {
  cursor: pointer;
}

.btn-color-1,
.btn-color-2:hover {
  background: var(--color-border-dark);
  color: white;
}

.btn-color-1:hover {
  background: black;
}

.btn-color-2 {
  background: var(--color-bg-white);
}

/* ── Detail Cards ── */

.details-container {
  padding: 1.5rem;
  flex: 1;
  background: var(--color-bg-white);
  border-radius: var(--border-radius-lg);
  border: var(--color-border-dark) 0.1rem solid;
  border-color: var(--color-border);
  text-align: center;
  position: relative;
  box-sizing: border-box;
  max-width: 100%;
}

.color-container {
  border-color: var(--color-border);
  background: var(--color-bg-light);
}

.color-container h3 {
  margin-bottom: 1rem;
}

/* ── Image Lightbox ── */

.full-img {
  width: 100%;
  height: 100vh;
  background: var(--color-overlay);
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.full-img img {
  width: 90%;
  max-width: 600px;
}

.full-img span {
  position: absolute;
  top: 5%;
  right: 5%;
  width: 30px;
  height: 2px;
  background-color: white;
  transition: var(--transition-fast);
  cursor: pointer;
}

.full-img span:first-child {
  transform: rotate(-45deg);
}

.full-img span:nth-child(2) {
  transform: rotate(45deg);
}

/* ── Avatar ── */

.Avatar {
  display: flex;
  border-radius: 0;
  width: 90px;
}

/* ── Arrow Divider ── */

.arrow {
  position: absolute;
  right: -5rem;
  bottom: 2.5rem;
}
