* {
  padding: 2px; /* Or any other value you prefer, like 1em or 5% */
}

.color-option {
  display: flex;
  align-items: center;
  gap: 12px;
}

.color-swatch {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  /* ⬅ THIS prevents collapse */
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.4);
}

.hidden {
  display: none;
}

.color-selector-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

@media (min-width: 768px) {
  .color-selector-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.site-header {
  background: rgba(244, 206, 219, 0.65);
  backdrop-filter: blur(10);
  border-bottom: 3px solid #d8b4e2;
}


.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 80px;
  width: auto;
}

.main-nav a {
  margin-left: 1.6rem;
  text-decoration: none;
  font-size: 1rem;
  color: #403145;
  /* deep neutral, soft contrast */
  font-weight: bold;
  transition: 0.2s;
}

.main-nav a:hover {
  color: #7a55a5;
  /* subtle purple hover */
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg,
      #E5DAF9 0%,
      #ffe8f0 45%,
      #f4cedb 100%
    );
  background-attachment: fixed;
  /* keeps it smooth on scroll */
}