/* Digital Try-On Closet - AI-Inspired Modern Design */
:root {
  /* Primary: Sophisticated Gray from logo */
  --primary: #7E7E7E;
  --primary-dark: #5A5A5A;
  --primary-light: #9A9A9A;
  
  /* Handwritten fonts */
  --font-handwritten: 'Caveat', 'Klee One', cursive;
  --font-handwritten-jp: 'Klee One', 'Caveat', cursive;
  
  /* Secondary & Accent: Subtle tech-inspired tones */
  --secondary: #8E8E8E;
  --accent: #6B6B6B;
  --accent-light: #A0A0A0;
  
  /* Background: Clean, minimal whites and grays */
  --bg: #FAFAFA;
  --bg-card: #F0F0F0;
  --bg-card-inner: #E8E8E8;
  
  /* Text: High contrast for readability */
  --text: #333333;
  --text-light: #555555;
  --text-muted: #888888;
  
  /* Circuit pattern accent (subtle tech feel) */
  --circuit: #C0C0C0;
  --circuit-glow: rgba(126, 126, 126, 0.3);
  
  /* Borders & Shadows */
  --border: #E0E0E0;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 20px rgba(126, 126, 126, 0.2);
  
  /* Border Radius */
  --radius: 16px;
  --radius-sm: 12px;
  --radius-lg: 24px;
  --nav-height: 70px;
}

/* Dark Mode - Sleek Tech Theme */
:root.dark {
  --primary: #9A9A9A;
  --primary-dark: #7E7E7E;
  --primary-light: #B0B0B0;
  --accent: #A0A0A0;
  --accent-light: #C0C0C0;
  
  --font-handwritten: 'Caveat', 'Klee One', cursive;
  --font-handwritten-jp: 'Klee One', 'Caveat', cursive;
  
  --bg: #1A1A1A;
  --bg-card: #252525;
  --bg-card-inner: #303030;
  
  --text: #F0F0F0;
  --text-light: #D0D0D0;
  --text-muted: #888888;
  
  --circuit: #4A4A4A;
  --circuit-glow: rgba(160, 160, 160, 0.2);
  
  --border: #3A3A3A;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px rgba(160, 160, 160, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  padding-bottom: calc(var(--nav-height) + 20px);
  -webkit-font-smoothing: antialiased;
}

/* ===========================================
   Step Guide - Handwritten Style
   =========================================== */

.step-guide {
  background: linear-gradient(135deg, rgba(126, 126, 126, 0.08) 0%, rgba(160, 160, 160, 0.05) 100%);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 20px;
  border: 1px dashed var(--border);
  position: relative;
}

.step-guide::before {
  content: '✨';
  position: absolute;
  top: -8px;
  left: 16px;
  font-size: 1rem;
  background: var(--bg);
  padding: 0 8px;
}

.step-guide-title {
  font-family: var(--font-handwritten-jp);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-guide-title i {
  color: var(--primary);
  font-size: 0.9rem;
}

.step-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-handwritten-jp);
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.5;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  border-radius: 50%;
  font-family: var(--font-handwritten);
  font-size: 1rem;
  font-weight: 600;
}

.step-text {
  flex: 1;
  padding-top: 2px;
}

.step-text strong {
  color: var(--primary-dark);
  font-weight: 600;
}

.step-arrow {
  font-family: var(--font-handwritten);
  color: var(--primary);
  font-size: 1.5rem;
  margin: -4px 0;
  text-align: center;
  opacity: 0.6;
}

/* Inline step hint */
.step-hint {
  font-family: var(--font-handwritten-jp);
  font-size: 0.95rem;
  color: var(--text-muted);
  text-align: center;
  padding: 8px 12px;
  margin: 8px 0;
  background: rgba(126, 126, 126, 0.05);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--primary-light);
}

.step-hint i {
  margin-right: 6px;
  color: var(--primary);
}

/* Page-specific step guides */
.home-step-guide .step-item {
  font-size: 1rem;
}

.models-step-guide,
.closet-step-guide {
  background: linear-gradient(135deg, rgba(126, 126, 126, 0.05) 0%, transparent 100%);
  padding: 14px 18px;
}

/* Animated arrow for emphasis */
@keyframes bounceRight {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

.step-guide .animated-arrow {
  display: inline-block;
  animation: bounceRight 1s ease-in-out infinite;
}

/* Dark mode adjustments */
:root.dark .step-guide {
  background: linear-gradient(135deg, rgba(160, 160, 160, 0.08) 0%, rgba(126, 126, 126, 0.05) 100%);
}

:root.dark .step-guide::before {
  background: var(--bg);
}

:root.dark .step-guide-title {
  color: var(--text);
}

:root.dark .step-item {
  color: var(--text-light);
}

:root.dark .step-text strong {
  color: var(--accent-light);
}

:root.dark .step-hint {
  background: rgba(160, 160, 160, 0.08);
  border-left-color: var(--primary);
}

/* Usage Limit Info */
.usage-limit-info {
  text-align: center;
  margin-top: 16px;
  padding: 10px 16px;
  background: rgba(126, 126, 126, 0.08);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: var(--text-muted);
  border-left: 3px solid var(--primary-light);
}

.usage-limit-info i {
  margin-right: 8px;
  color: var(--primary);
}

.usage-limit-info strong {
  color: var(--primary-dark);
  font-size: 1rem;
  font-weight: 600;
}

.usage-limit-info.exhausted {
  background: linear-gradient(135deg, #f8f0f0 0%, #f0e8e8 100%);
  border-left-color: #c08080;
  color: #8b6060;
}

:root.dark .usage-limit-info {
  background: rgba(160, 160, 160, 0.08);
}

:root.dark .usage-limit-info.exhausted {
  background: linear-gradient(135deg, #352a2a 0%, #3d3030 100%);
  border-left-color: #8a5555;
  color: #c9a0a0;
}

/* Model Full Body Notice - Clean Style */
.model-notice {
  background: linear-gradient(135deg, #F5F5F5 0%, #EBEBEB 100%);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-bottom: 16px;
  font-size: 0.8rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.model-notice i {
  color: var(--primary);
  font-size: 1rem;
}

:root.dark .model-notice {
  background: linear-gradient(135deg, #2A2A2A 0%, #303030 100%);
  border-color: var(--border);
  border-left-color: var(--primary);
  color: var(--text-light);
}

:root.dark .model-notice i {
  color: var(--accent-light);
}



/* App Container */
.app-container {
  max-width: 480px;
  margin: 0 auto;
  padding: 20px 16px;
  padding-bottom: calc(var(--nav-height) + 32px);
}

/* Header */
.app-header {
  text-align: center;
  padding: 16px 16px 24px;
  margin: -20px -16px 24px -16px;
  position: relative;
  /* Match page background for seamless integration */
  background: var(--bg);
}

/* Tablet and Desktop: more spacious header */
@media (min-width: 768px) {
  .app-header {
    padding: 24px 24px 32px;
  }
}

@media (min-width: 1024px) {
  .app-header {
    padding: 32px 32px 40px;
  }
}

/* Language Button in Header */
.lang-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: var(--text);
  font-size: 0.9rem;
  transition: all 0.2s ease;
  box-shadow: var(--shadow);
}

.lang-btn:hover {
  background: var(--bg-card-inner);
  transform: translateY(-1px);
}

.lang-btn:active {
  transform: translateY(0);
}

.lang-btn i {
  color: var(--accent);
  font-size: 0.85rem;
}

#current-lang-flag {
  font-size: 1rem;
}

/* Language Picker Modal */
.lang-picker-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
  z-index: 1000;
  animation: fadeIn 0.2s ease;
}

.lang-picker {
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  overflow: hidden;
  animation: slideDown 0.2s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lang-picker-header {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-picker-header i {
  color: var(--accent);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
  transition: background 0.2s ease;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  color: var(--text);
  font-size: 0.95rem;
}

.lang-option:hover {
  background: var(--bg-card);
}

.lang-option.active {
  background: var(--bg-card-inner);
  font-weight: 600;
}

.lang-option .flag {
  font-size: 1.2rem;
}

.lang-option .lang-name {
  flex: 1;
}

.lang-option .check {
  color: var(--accent);
  opacity: 0;
}

.lang-option.active .check {
  opacity: 1;
}

/* Logo Container in Header */
.header-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  /* Seamless background integration */
  background: transparent;
  padding: 16px;
  border-radius: var(--radius);
}

.header-logo img {
  /* Responsive logo sizing */
  width: clamp(200px, 60vw, 320px);
  max-width: 100%;
  height: auto;
  /* Seamless background - match website background */
  background: var(--bg);
  padding: 12px 20px;
  border-radius: var(--radius);
  /* Subtle shadow for depth without standing out */
  filter: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.header-logo img:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 16px rgba(126, 126, 126, 0.15);
}

/* Dark mode - invert logo colors for visibility */
:root.dark .header-logo img {
  background: var(--bg);
  filter: brightness(1.3) contrast(0.9);
  box-shadow: 0 2px 12px rgba(255, 255, 255, 0.05);
}

:root.dark .header-logo img:hover {
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

/* Tablet and larger screens */
@media (min-width: 768px) {
  .header-logo img {
    width: clamp(280px, 50vw, 400px);
    padding: 16px 28px;
  }
}

/* Desktop screens */
@media (min-width: 1024px) {
  .header-logo img {
    width: clamp(320px, 40vw, 450px);
    padding: 20px 32px;
  }
}

.app-header h1 {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--text);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.app-header h1 i {
  display: none;
}

.app-header .subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
}

/* Navigation */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-around;
  padding: 12px 0;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 1000;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.2s;
}

.nav-item i {
  font-size: 1.3rem;
  margin-bottom: 2px;
}

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

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

.nav-item:active {
  transform: scale(0.95);
}

/* Page Headers */
.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.page-header h2 {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}

.page-header h2 i {
  display: none;
}

.page-description {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 20px;
}

/* Buttons */
.add-btn {
  background: var(--bg-card);
  color: var(--text);
  border: none;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.add-btn:hover {
  background: var(--primary);
  color: white;
}

.submit-btn {
  width: 100%;
  background: var(--primary);
  color: white;
  border: none;
  padding: 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 16px;
}

.submit-btn:hover:not(:disabled) {
  background: var(--primary-dark);
}

.submit-btn:disabled {
  background: var(--border);
  color: var(--text-muted);
  cursor: not-allowed;
}

.danger-btn {
  width: 100%;
  background: #c4a494;
  color: white;
  border: none;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s;
}

.danger-btn:hover {
  background: #b89484;
}

.action-btn {
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.action-btn:hover {
  background: var(--bg-card);
}

.action-btn.danger {
  color: #c4a494;
  border-color: #c4a494;
}

/* HOME Page - Virtual Try-On */
.home-page {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.try-on-section {
  background: transparent;
}

.try-on-section h2 {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--text);
}

.try-on-section h2 i {
  display: none;
}

.selection-grid {
  display: flex;
  align-items: stretch;
  gap: 16px;
  margin-bottom: 24px;
}

.selection-card {
  flex: 1;
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
}

.selection-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.selection-card:active {
  transform: scale(0.98);
}

.selection-label {
  font-size: 0.7rem;
  color: var(--text);
  margin-bottom: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.selection-preview {
  flex: 1;
  min-height: 180px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-card-inner);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.selection-preview .placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  padding: 20px;
  text-align: center;
}

.selection-preview .placeholder i {
  font-size: 2.5rem;
  opacity: 0.6;
}

.selection-preview .placeholder span {
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}

.selection-preview .placeholder .label {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}

.selection-name {
  font-size: 0.8rem;
  font-weight: 400;
  margin-top: 10px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text);
}

.plus-icon {
  font-size: 1.5rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  padding: 0 8px;
}

.try-on-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-dark) 100%);
  color: white;
  border: none;
  padding: 18px;
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.try-on-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.try-on-btn:hover::before {
  left: 100%;
}

.try-on-btn i {
  font-size: 1.1rem;
}

.try-on-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.try-on-btn:disabled {
  background: var(--border);
  color: var(--text-muted);
  cursor: not-allowed;
  box-shadow: none;
}

.try-on-btn:disabled::before {
  display: none;
}

.try-on-btn-text {
  flex: 1;
  text-align: center;
}

.try-on-btn-count {
  background: rgba(255, 255, 255, 0.3);
  padding: 6px 12px;
  border-radius: 14px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  min-width: 50px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.try-on-btn-count::before {
  content: '残り ';
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.9;
}

.try-on-btn:disabled .try-on-btn-count {
  background: rgba(0, 0, 0, 0.15);
  border-color: transparent;
}

.try-on-btn-count.warning {
  background: rgba(255, 180, 0, 0.4);
  border-color: rgba(255, 180, 0, 0.5);
}

.try-on-btn-count.exhausted {
  background: rgba(255, 100, 100, 0.4);
  border-color: rgba(255, 100, 100, 0.5);
}

/* Try-on Tips */
.tryon-tips {
  margin-top: 16px;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(255, 243, 224, 0.8) 0%, rgba(255, 236, 210, 0.8) 100%);
  border-radius: var(--radius-sm);
  border-left: 3px solid #f0a050;
}

:root.dark .tryon-tips {
  background: linear-gradient(135deg, rgba(60, 50, 35, 0.8) 0%, rgba(55, 45, 30, 0.8) 100%);
  border-left-color: #c08040;
}

.tryon-tips p {
  font-size: 0.8rem;
  color: #806030;
  margin: 0;
  line-height: 1.5;
}

:root.dark .tryon-tips p {
  color: #d0a070;
}

/* Result Section */
.result-section {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 20px;
}

.result-section h3 {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--text);
}

.result-section h3 i {
  display: none;
}

.result-container {
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 16px;
}

.result-container img {
  width: 100%;
  height: auto;
}

.result-actions {
  display: flex;
  gap: 12px;
}

.result-actions .action-btn {
  flex: 1;
  justify-content: center;
}

/* Favorites Section */
.favorites-section {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 20px;
}

.favorites-section h3 {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--text);
}

.favorites-section h3 i {
  display: none;
}

.favorites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.favorite-item {
  aspect-ratio: 3/4;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
}

.favorite-item:hover {
  transform: scale(1.03);
}

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

/* Loading Overlay - Modern AI Style */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 30, 30, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  backdrop-filter: blur(8px);
}

.loading-content {
  text-align: center;
  color: white;
}

/* AI-Inspired Loading Animation */
.loading-spinner {
  width: 60px;
  height: 60px;
  position: relative;
  margin: 0 auto 24px;
}

.loading-spinner::before,
.loading-spinner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
}

.loading-spinner::before {
  width: 100%;
  height: 100%;
  border: 2px solid rgba(160, 160, 160, 0.2);
  border-top-color: #A0A0A0;
  animation: spin 1s linear infinite;
}

.loading-spinner::after {
  width: 70%;
  height: 70%;
  top: 15%;
  left: 15%;
  border: 2px solid rgba(126, 126, 126, 0.2);
  border-bottom-color: #7E7E7E;
  animation: spin 0.8s linear infinite reverse;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loading-content p {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.loading-sub {
  font-size: 0.8rem;
  opacity: 0.6;
  letter-spacing: 0.05em;
}

/* Models Page */
.models-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.model-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
}

.model-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.model-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-card-inner);
}

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

.model-info {
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.model-name {
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--text);
}

.delete-model-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s;
}

.delete-model-btn:hover {
  color: #c4a494;
  background: rgba(196, 164, 148, 0.1);
}

/* Closet Page */
.category-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  overflow-x: auto;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}

.category-tab {
  flex-shrink: 0;
  background: var(--bg-card);
  border: none;
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  color: var(--text);
}

.category-tab.active {
  background: var(--primary);
  color: white;
}

.clothes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.clothes-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.2s;
}

.clothes-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.clothes-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-card-inner);
}

.clothes-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.clothes-info {
  padding: 12px;
}

.clothes-name {
  font-weight: 400;
  font-size: 0.8rem;
  display: block;
  color: var(--text);
}

.clothes-category {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.delete-clothes-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(92, 82, 72, 0.6);
  border: none;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.2s;
}

.clothes-card:hover .delete-clothes-btn {
  opacity: 1;
}

.delete-clothes-btn:hover {
  background: rgba(196, 164, 148, 0.9);
}

/* Settings Page */
.settings-page {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.settings-page > h2 {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.settings-page > h2 i {
  display: none;
}

.settings-section {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 20px;
}

.settings-section h3 {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--text);
}

.settings-section h3 i {
  display: none;
}

.section-description {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 16px;
}

.setting-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--bg-card-inner);
}

.setting-item:last-child {
  border-bottom: none;
}

.setting-item span {
  font-size: 0.85rem;
  color: var(--text);
}

/* Switch Toggle */
.switch {
  position: relative;
  width: 50px;
  height: 28px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg-card-inner);
  border-radius: 28px;
  transition: 0.3s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: 0.3s;
}

input:checked + .slider {
  background-color: var(--primary);
}

input:checked + .slider:before {
  transform: translateX(22px);
}

/* Language Select */
.language-select {
  padding: 8px 12px;
  border: 1px solid var(--bg-card-inner);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  font-size: 0.8rem;
  cursor: pointer;
  min-width: 120px;
}

.language-select:focus {
  outline: none;
  border-color: var(--primary);
}

/* Data Stats */
.data-stats {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 16px 8px;
  background: var(--bg-card-inner);
  border-radius: var(--radius-sm);
}

.stat-value {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--primary);
}

.stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

/* API Guide */
.api-guide {
  margin-top: 16px;
  padding: 16px;
  background: var(--bg-card-inner);
  border-radius: var(--radius-sm);
}

.api-guide h4 {
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--text);
}

.api-guide ol {
  padding-left: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.api-guide li {
  margin-bottom: 8px;
}

.api-guide a {
  color: var(--primary);
}

/* API Key Input */
.api-key-input {
  display: flex;
  gap: 8px;
}

.api-key-input input {
  flex: 1;
}

.toggle-visibility {
  background: var(--bg-card-inner);
  border: 1px solid var(--bg-card-inner);
  padding: 0 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--text-muted);
}

/* Privacy Note */
.privacy-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--primary);
  margin-top: 8px;
}

.privacy-note i {
  font-size: 1rem;
}

/* Form Elements */
.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--bg-card-inner);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  background: var(--bg);
  color: var(--text);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
}

.hint {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Upload Area */
.upload-area {
  border: 2px dashed var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--bg-card-inner);
}

.upload-area:hover {
  border-color: var(--primary);
  background: var(--bg-card);
}

.upload-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
}

.upload-placeholder i {
  font-size: 2rem;
}

.upload-placeholder span {
  font-size: 0.8rem;
}

.upload-preview {
  max-width: 100%;
  max-height: 200px;
  border-radius: var(--radius-sm);
}

/* Checkbox */
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text);
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--primary);
}

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(92, 82, 72, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 16px;
  backdrop-filter: blur(4px);
}

.modal-content {
  background: var(--bg);
  border-radius: var(--radius);
  width: 100%;
  max-width: 400px;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalIn 0.3s ease-out;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.modal-header h3 {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text);
}

.close-btn {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
}

.modal-body {
  padding: 20px;
}

/* Picker Modal */
.picker-modal {
  max-width: 500px;
}

.picker-body {
  padding: 20px;
}

.direct-upload-section {
  margin-bottom: 16px;
}

.direct-upload-btn {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px 20px;
  background: linear-gradient(135deg, var(--bg-card-inner) 0%, var(--bg-card) 100%);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text);
}

.direct-upload-btn:hover {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-inner) 100%);
}

.direct-upload-btn i {
  font-size: 1.8rem;
  color: var(--primary);
}

.direct-upload-btn span {
  font-size: 0.9rem;
  font-weight: 500;
}

.direct-upload-btn small {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.picker-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0 16px;
  color: var(--text-muted);
  font-size: 0.75rem;
}

.picker-divider::before,
.picker-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

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

.picker-item {
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
}

.picker-item:hover {
  transform: scale(1.03);
}

.picker-item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
}

.picker-item span {
  display: block;
  font-size: 0.7rem;
  margin-top: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text);
}

/* Result Modal */
.result-modal {
  max-width: 500px;
}

.result-detail img {
  width: 100%;
  border-radius: var(--radius-sm);
}

.result-detail-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  padding: 0 20px 20px;
}

.result-detail-actions .action-btn {
  flex: 1;
  justify-content: center;
}

/* Toast */
.toast {
  position: fixed;
  bottom: calc(var(--nav-height) + 20px);
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--bg-card);
  color: var(--text);
  padding: 12px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3000;
  transition: transform 0.3s ease-out;
  font-size: 0.85rem;
}

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

.toast-success {
  border-left: 4px solid var(--primary);
}

.toast-success i {
  color: var(--primary);
}

.toast-error {
  border-left: 4px solid #c4a494;
}

.toast-error i {
  color: #c4a494;
}

.toast-info {
  border-left: 4px solid var(--primary);
}

.toast-info i {
  color: var(--primary);
}

/* Empty Message */
.empty-message {
  text-align: center;
  color: var(--text-muted);
  padding: 40px 20px;
  grid-column: 1 / -1;
  font-size: 0.85rem;
}

/* ===========================================
   Feedback Styles
   =========================================== */

/* Feedback Modal (after try-on) */
.feedback-modal-overlay {
  background: rgba(30, 30, 30, 0.85);
  backdrop-filter: blur(8px);
}

.feedback-modal {
  max-width: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  animation: feedbackSlideUp 0.3s ease-out;
}

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

.feedback-modal-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  padding: 20px;
  text-align: center;
}

.feedback-modal-header h3 {
  font-family: var(--font-handwritten-jp);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
}

.feedback-modal-body {
  padding: 20px;
}

.feedback-result-preview {
  margin-bottom: 16px;
  text-align: center;
}

.feedback-result-preview img {
  max-width: 100%;
  max-height: 200px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: contain;
}

.feedback-question {
  font-family: var(--font-handwritten-jp);
  font-size: 1.1rem;
  text-align: center;
  color: var(--text);
  margin-bottom: 16px;
}

.feedback-ratings {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.rating-btn {
  width: 48px;
  height: 48px;
  border: 2px solid var(--border);
  border-radius: 50%;
  background: var(--bg);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rating-btn:hover {
  transform: scale(1.1);
  border-color: var(--primary);
}

.rating-btn.selected {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(126, 126, 126, 0.3);
}

.feedback-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: inherit;
  resize: none;
  background: var(--bg);
  color: var(--text);
  margin-bottom: 12px;
}

.feedback-textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.feedback-hint {
  font-family: var(--font-handwritten-jp);
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

.feedback-modal-footer {
  display: flex;
  gap: 12px;
  padding: 0 20px 20px;
}

.feedback-skip-btn {
  flex: 1;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text-muted);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}

.feedback-skip-btn:hover {
  background: var(--bg-card);
}

.feedback-send-btn {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.feedback-send-btn:disabled {
  background: var(--border);
  color: var(--text-muted);
  cursor: not-allowed;
}

.feedback-send-btn:not(:disabled):hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(126, 126, 126, 0.3);
}

/* Feedback Section in Settings */
.feedback-section {
  border: 2px solid var(--primary-light);
  background: linear-gradient(135deg, rgba(126, 126, 126, 0.05) 0%, transparent 100%);
}

.feedback-form {
  margin-bottom: 24px;
}

.feedback-category-select {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  font-size: 0.9rem;
  cursor: pointer;
}

.feedback-ratings-inline {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.rating-btn-sm {
  width: 40px;
  height: 40px;
  border: 2px solid var(--border);
  border-radius: 50%;
  background: var(--bg);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rating-btn-sm:hover {
  transform: scale(1.1);
  border-color: var(--primary);
}

.rating-btn-sm.selected {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  transform: scale(1.1);
}

.feedback-detail-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: inherit;
  resize: vertical;
  min-height: 100px;
  background: var(--bg);
  color: var(--text);
}

.feedback-detail-textarea:focus {
  outline: none;
  border-color: var(--primary);
}

/* Feedback History */
.feedback-history-section {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 8px;
}

.feedback-history-section h4 {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feedback-history-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feedback-history-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: var(--bg-card-inner);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
}

.feedback-emoji {
  font-size: 1.1rem;
}

.feedback-cat {
  font-size: 0.9rem;
}

.feedback-msg {
  flex: 1;
  color: var(--text-light);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.feedback-date {
  color: var(--text-muted);
  font-size: 0.7rem;
}

.empty-feedback {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  padding: 16px;
}

/* Dark mode adjustments for feedback */
:root.dark .feedback-modal {
  background: var(--bg);
}

:root.dark .feedback-section {
  border-color: var(--primary-dark);
}

/* Terms Link */
.terms-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 10px 16px;
  background: var(--bg-card-inner);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s;
}

.terms-link:hover {
  background: var(--bg-card);
  border-color: var(--primary-light);
  color: var(--primary-dark);
}

.terms-link i {
  color: var(--primary);
}

/* Responsive */
@media (min-width: 768px) {
  .app-container {
    max-width: 600px;
  }

  .models-grid,
  .clothes-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .picker-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .app-container {
    max-width: 800px;
  }

  .bottom-nav {
    max-width: 500px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 20px 20px 0 0;
    border: 1px solid var(--border);
    border-bottom: none;
  }
}

/* ===========================================
   Additional AI/Tech-Inspired Design Elements
   =========================================== */

/* Subtle circuit pattern background for cards */
.selection-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(90deg, var(--circuit) 1px, transparent 1px),
    linear-gradient(var(--circuit) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.03;
  border-radius: var(--radius);
  pointer-events: none;
  transition: opacity 0.3s;
}

.selection-card:hover::before {
  opacity: 0.06;
}

/* AI Badge styling */
.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ai-badge i {
  font-size: 0.7rem;
}

/* Enhanced card hover effects */
.model-card,
.clothes-card {
  position: relative;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.model-card:hover,
.clothes-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-glow);
}

/* Result section enhancement */
.result-section {
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.result-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary-light), var(--primary-dark));
}

/* Favorites section enhancement */
.favorites-section {
  border: 1px solid var(--border);
}

/* Settings section enhancement */
.settings-section {
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}

.settings-section:hover {
  border-color: var(--primary-light);
}

/* Bottom navigation enhancement */
.bottom-nav {
  background: var(--bg);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.05);
}

:root.dark .bottom-nav {
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.3);
}

/* Form inputs enhancement */
.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--circuit-glow);
}

/* Modal enhancement */
.modal-content {
  border: 1px solid var(--border);
}

.modal-header {
  background: linear-gradient(to bottom, var(--bg-card), var(--bg));
}

/* Language picker enhancement */
.lang-picker {
  border: 1px solid var(--border);
}

.lang-option:hover {
  background: var(--bg-card);
}

.lang-option.active {
  background: linear-gradient(90deg, var(--bg-card-inner), transparent);
  border-left: 3px solid var(--primary);
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-card);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Selection styling */
::selection {
  background: var(--primary);
  color: white;
}

/* Focus visible for accessibility */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Smooth transitions for theme changes */
body,
.app-container,
.bottom-nav,
.modal-content,
.selection-card,
.model-card,
.clothes-card {
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
