/* ==============================
   IMAGEM PRÓPRIA — App Styles
   ============================== */

:root {
  --navy: #1a1a2e;
  --navy-light: #2a2a4e;
  --gold: #c9a84c;
  --gold-light: #e8d5a0;
  --gold-pale: #f5ecd7;
  --white: #ffffff;
  --light-grey: #f5f5f5;
  --mid-grey: #e0e0e0;
  --dark-grey: #666;
  --text: #2c2c2c;
  --text-light: #888;
  --danger: #e74c3c;
  --success: #27ae60;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --nav-height: 70px;
  --header-height: 56px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--light-grey);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
}

#app {
  height: 100%;
  position: relative;
  overflow: hidden;
  max-width: 500px;
  margin: 0 auto;
  background: var(--white);
}

/* ---- VIEWS ---- */
.view {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  background: var(--white);
  transform: translateX(100%);
  opacity: 0;
  transition: transform var(--transition), opacity var(--transition);
  padding-bottom: calc(var(--nav-height) + var(--safe-bottom) + 16px);
  z-index: 1;
}

.view.active {
  transform: translateX(0);
  opacity: 1;
  z-index: 2;
}

.view.slide-out-left {
  transform: translateX(-30%);
  opacity: 0.5;
}

/* ---- HEADER ---- */
.app-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(var(--safe-top) + 12px) 16px 12px;
  background: var(--white);
  border-bottom: 1px solid var(--mid-grey);
  min-height: var(--header-height);
}

.app-header h1 {
  font-size: 1.3rem;
  color: var(--navy);
  flex: 1;
}

.btn-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  color: var(--navy);
  cursor: pointer;
  border-radius: 50%;
  transition: background var(--transition);
}

.btn-icon:active {
  background: var(--light-grey);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:active {
  background: var(--gold-light);
  transform: scale(0.97);
}

.btn-secondary {
  background: var(--light-grey);
  color: var(--navy);
  border: 1px solid var(--mid-grey);
}

.btn-secondary:active {
  background: var(--mid-grey);
}

.btn-ghost {
  background: none;
  color: var(--dark-grey);
}

.btn-ghost:active {
  background: var(--light-grey);
}

.btn-danger {
  background: #fef2f2;
  color: var(--danger);
  border: 1px solid #fecaca;
}

.btn-danger:active {
  background: #fecaca;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
  width: 100%;
}

.btn-full {
  width: 100%;
}

/* ---- ONBOARDING ---- */
#view-onboarding {
  background: var(--white);
  z-index: 100;
  padding-bottom: 0;
}

.onboarding-container {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.onboarding-step {
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 40px 24px;
  flex: 1;
  animation: fadeInUp 0.4s ease;
  overflow-y: auto;
}

.onboarding-step.active {
  display: flex;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.onboarding-logo {
  margin-bottom: 24px;
}

.onboarding-title {
  font-size: 2rem;
  color: var(--navy);
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.onboarding-subtitle {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.onboarding-text {
  color: var(--dark-grey);
  text-align: center;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 320px;
}

.step-indicator {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.step-indicator .current {
  color: var(--gold);
  font-weight: 700;
}

.onboarding-step h2 {
  font-size: 1.4rem;
  color: var(--navy);
  text-align: center;
  margin-bottom: 24px;
  padding: 0 8px;
}

/* ---- QUIZ OPTIONS ---- */
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 380px;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 2px solid var(--mid-grey);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition);
  text-align: left;
}

.quiz-option:active,
.quiz-option.selected {
  border-color: var(--gold);
  background: var(--gold-pale);
}

.quiz-icon {
  font-size: 1.6rem;
  min-width: 36px;
  text-align: center;
}

.quiz-label {
  font-weight: 600;
  color: var(--navy);
  display: block;
  font-size: 1rem;
}

.quiz-desc {
  font-size: 0.82rem;
  color: var(--dark-grey);
  display: block;
  margin-top: 2px;
}

.color-swatch-group {
  display: flex;
  gap: 4px;
  min-width: 36px;
}

.color-swatch {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.success-check {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--success);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleIn {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

.profile-summary {
  background: var(--light-grey);
  border-radius: var(--radius);
  padding: 20px;
  width: 100%;
  max-width: 340px;
  margin: 16px 0 32px;
  text-align: left;
}

.profile-summary p {
  padding: 6px 0;
  font-size: 0.95rem;
  color: var(--text);
}

.profile-summary strong {
  color: var(--navy);
}

/* ---- FILTERS ---- */
.filters-bar {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.filters-bar::-webkit-scrollbar { display: none; }

.filter-chip {
  padding: 8px 16px;
  border: 1.5px solid var(--mid-grey);
  border-radius: 20px;
  background: var(--white);
  color: var(--dark-grey);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
  font-family: 'Inter', sans-serif;
}

.filter-chip.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.secondary-filters {
  display: flex;
  gap: 8px;
  padding: 0 16px 12px;
}

.filter-select {
  flex: 1;
  padding: 8px 12px;
  border: 1.5px solid var(--mid-grey);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23666' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

/* ---- WARDROBE GRID ---- */
.wardrobe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px 16px;
}

.wardrobe-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--light-grey);
  aspect-ratio: 1;
  cursor: pointer;
  transition: transform var(--transition);
  box-shadow: var(--shadow);
}

.wardrobe-item:active {
  transform: scale(0.96);
}

.wardrobe-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wardrobe-item .item-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text-light);
  background: var(--light-grey);
}

.item-badge {
  position: absolute;
  bottom: 6px;
  left: 6px;
  right: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--navy);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.color-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid rgba(0,0,0,0.1);
}

/* ---- EMPTY STATE ---- */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 32px;
  text-align: center;
}

.empty-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
}

.empty-state h3 {
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.empty-state p {
  color: var(--dark-grey);
  line-height: 1.5;
  margin-bottom: 24px;
  max-width: 280px;
}

/* ---- ADD ITEM FORM ---- */
.add-item-form {
  padding: 16px;
}

.photo-capture {
  margin-bottom: 24px;
}

.photo-preview {
  width: 100%;
  aspect-ratio: 1;
  max-height: 300px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--light-grey);
  margin-bottom: 12px;
  cursor: pointer;
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-light);
  font-size: 0.9rem;
}

.photo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-actions {
  display: flex;
  gap: 8px;
}

.photo-actions .btn {
  flex: 1;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--mid-grey);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color var(--transition);
  background: var(--white);
  -webkit-appearance: none;
}

.form-input:focus {
  outline: none;
  border-color: var(--gold);
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  padding: 10px 16px;
  border: 1.5px solid var(--mid-grey);
  border-radius: 20px;
  background: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition);
}

.chip.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.color-palette {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.color-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}

.color-btn.active {
  border-color: var(--gold);
  transform: scale(1.15);
  box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--gold);
}

.btn-save {
  margin-top: 12px;
}

/* ---- CAMERA MODAL ---- */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: #000;
}

.camera-view {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.camera-view video {
  flex: 1;
  object-fit: cover;
}

.camera-controls {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 24px;
  background: rgba(0,0,0,0.8);
}

.camera-close, .camera-flip {
  color: white;
  font-size: 1.4rem;
  width: 48px;
  height: 48px;
}

.camera-shutter {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--gold);
  cursor: pointer;
  transition: transform 0.15s;
}

.camera-shutter:active {
  transform: scale(0.9);
}

/* ---- ITEM DETAIL ---- */
.item-detail-content {
  padding: 0;
}

.detail-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--light-grey);
}

.detail-info {
  padding: 20px 16px;
}

.detail-info h2 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.detail-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--light-grey);
}

.detail-row .label {
  color: var(--dark-grey);
  font-size: 0.9rem;
}

.detail-row .value {
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ---- SUGGEST / OUTFIT CARD ---- */
.suggest-content {
  padding: 16px;
}

.outfit-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  margin-bottom: 24px;
  animation: fadeInUp 0.4s ease;
}

.outfit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  padding: 4px;
}

.outfit-slot {
  position: relative;
  aspect-ratio: 1;
  background: var(--light-grey);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.outfit-slot:last-child:nth-child(odd) {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.slot-label {
  position: absolute;
  top: 6px;
  left: 6px;
  padding: 2px 8px;
  background: rgba(26,26,46,0.75);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 4px;
  z-index: 2;
}

.slot-image {
  width: 100%;
  height: 100%;
}

.slot-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slot-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.8rem;
  height: 100%;
}

.outfit-colors {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  border-top: 1px solid var(--light-grey);
}

.outfit-actions {
  display: flex;
  gap: 8px;
  padding: 12px 16px 16px;
}

.outfit-actions .btn {
  flex: 1;
  padding: 12px 12px;
  font-size: 0.85rem;
}

/* ---- SAVED OUTFITS ---- */
.section-title {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.saved-outfits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.saved-outfit-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition);
}

.saved-outfit-card:active {
  transform: scale(0.97);
}

.saved-outfit-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  padding: 2px;
}

.saved-outfit-preview .mini-slot {
  aspect-ratio: 1;
  background: var(--light-grey);
  border-radius: 4px;
  overflow: hidden;
}

.saved-outfit-preview .mini-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.saved-outfit-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
}

.saved-outfit-actions .delete-outfit {
  background: none;
  border: none;
  color: var(--danger);
  cursor: pointer;
  font-size: 0.85rem;
  padding: 4px;
}

/* ---- PLANNER ---- */
.planner-content {
  padding: 16px;
}

.planner-week {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.planner-day {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1.5px solid var(--mid-grey);
  border-radius: var(--radius);
  padding: 12px;
  cursor: pointer;
  transition: all var(--transition);
  min-height: 72px;
}

.planner-day:active {
  border-color: var(--gold);
  background: var(--gold-pale);
}

.planner-day.today {
  border-color: var(--gold);
  background: var(--gold-pale);
}

.day-label {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
  min-width: 36px;
}

.day-slot {
  flex: 1;
  display: flex;
  gap: 6px;
  align-items: center;
  min-height: 48px;
}

.day-slot .mini-preview {
  display: flex;
  gap: 4px;
}

.day-slot .mini-preview img {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: cover;
}

.day-slot .day-empty {
  color: var(--text-light);
  font-size: 0.85rem;
}

.day-slot .clear-day {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--danger);
  cursor: pointer;
  font-size: 0.8rem;
  padding: 4px 8px;
}

.planner-picker {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-height: 60vh;
  background: var(--white);
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  padding: 20px;
  overflow-y: auto;
  z-index: 50;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.planner-picker h3 {
  margin-bottom: 16px;
  color: var(--navy);
}

.picker-outfits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}

.picker-outfit {
  border: 2px solid var(--mid-grey);
  border-radius: var(--radius);
  padding: 8px;
  cursor: pointer;
  transition: all var(--transition);
}

.picker-outfit:active,
.picker-outfit.selected {
  border-color: var(--gold);
  background: var(--gold-pale);
}

.picker-outfit .picker-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.picker-outfit .picker-preview img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
}

/* ---- PROFILE ---- */
.profile-content {
  padding: 24px 16px;
}

.profile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}

.profile-avatar {
  margin-bottom: 16px;
}

.profile-info {
  text-align: center;
}

.profile-info h2 {
  color: var(--navy);
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.profile-info p {
  color: var(--dark-grey);
  font-size: 0.9rem;
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.stat-card {
  background: var(--light-grey);
  border-radius: var(--radius);
  padding: 16px 12px;
  text-align: center;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  font-family: 'Playfair Display', serif;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--dark-grey);
  margin-top: 4px;
}

.profile-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.profile-actions .btn {
  justify-content: flex-start;
  padding: 14px 16px;
}

.app-info {
  text-align: center;
  padding: 16px 0;
  border-top: 1px solid var(--mid-grey);
}

.app-info p {
  font-size: 0.85rem;
  color: var(--dark-grey);
}

.text-muted {
  color: var(--text-light) !important;
  font-size: 0.8rem !important;
}

/* ---- BOTTOM NAV ---- */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 500px;
  display: flex;
  background: var(--white);
  border-top: 1px solid var(--mid-grey);
  padding-bottom: var(--safe-bottom);
  z-index: 100;
}

.nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 4px 8px;
  border: none;
  background: none;
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  cursor: pointer;
  transition: color var(--transition);
  min-height: 56px;
}

.nav-item.active {
  color: var(--gold);
}

.nav-item svg {
  transition: stroke var(--transition);
}

.nav-item.active svg {
  stroke: var(--gold);
}

/* ---- TOAST ---- */
.toast {
  position: fixed;
  bottom: calc(var(--nav-height) + var(--safe-bottom) + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  padding: 12px 24px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 200;
  opacity: 0;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ---- CONFIRM DIALOG ---- */
.confirm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.confirm-dialog {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  max-width: 320px;
  width: 100%;
  text-align: center;
}

.confirm-dialog h3 {
  color: var(--navy);
  margin-bottom: 8px;
}

.confirm-dialog p {
  color: var(--dark-grey);
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.confirm-actions {
  display: flex;
  gap: 8px;
}

.confirm-actions .btn {
  flex: 1;
}

/* ---- RESPONSIVE ---- */
@media (min-width: 500px) {
  .wardrobe-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (prefers-color-scheme: dark) {
  /* Future dark mode support */
}
