.dresscode-section {
  width: 100%;
  margin: 2.5rem 0;
}

.dresscode-card {
  padding: 1.8rem 1.4rem;
  text-align: center;
}

.dresscode-main-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--border-color);
  padding: 0.45rem 1.2rem;
  border-radius: var(--radius-full);
  color: var(--accent-color);
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.9rem;
}

.dresscode-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.4rem;
}

.dresscode-roles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  text-align: left;
  margin-bottom: 1.4rem;
}

.dresscode-role-box {
  background: rgba(140, 103, 33, 0.04);
  border: 1px solid rgba(140, 103, 33, 0.2);
  border-radius: var(--radius-sm);
  padding: 0.9rem;
}

.role-title {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.role-text {
  font-size: 0.8rem;
  color: var(--text-color);
  line-height: 1.4;
}

.palette-wrapper {
  margin-bottom: 1.2rem;
}

.palette-label {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.palette-dots-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
}

.color-pill {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.color-pill:hover {
  transform: scale(1.18);
  box-shadow: 0 6px 15px rgba(212, 175, 55, 0.5);
}

.dresscode-warning-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1px dashed var(--border-color);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.9rem;
  font-size: 0.76rem;
  color: var(--accent-color);
  line-height: 1.4;
}

.warning-icon {
  flex-shrink: 0;
}
