@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Noto+Sans+KR:wght@300;400;700;900&display=swap');

:root {
  --bg-primary: #0b0b0d;
  --bg-secondary: #121216;
  --bg-card: rgba(26, 26, 32, 0.65);
  --bg-card-hover: rgba(36, 36, 45, 0.8);
  --border-color: rgba(255, 255, 255, 0.08);
  
  --accent-orange: #ff6b35;
  --accent-orange-glow: rgba(255, 107, 53, 0.35);
  --accent-gold: #ffb703;
  --accent-gold-glow: rgba(255, 183, 3, 0.3);
  --accent-teal: #06d6a0;
  
  --text-primary: #f8f9fa;
  --text-secondary: #adb5bd;
  --text-muted: #6c757d;
  
  --font-family: 'Outfit', 'Noto Sans KR', sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 20px var(--accent-orange-glow);
  
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 초기화 */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-family);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* 배경 주변부 발광(Glow) 효과 */
body::before, body::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--accent-orange);
  filter: blur(150px);
  opacity: 0.15;
  z-index: -1;
  pointer-events: none;
}
body::before {
  top: 10%;
  left: 10%;
}
body::after {
  bottom: 20%;
  right: 10%;
  background: var(--accent-gold);
}

/* 스크롤바 커스텀 */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #2b2b36;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-orange);
}

/* 컨테이너 */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* 헤더 및 히어로 섹션 */
header {
  position: relative;
  height: 420px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
  box-shadow: var(--shadow-lg);
}

header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/hero.png');
  background-size: cover;
  background-position: center;
  filter: brightness(0.4) contrast(1.1);
  transform: scale(1.05);
  transition: transform 10s ease;
}

header:hover::before {
  transform: scale(1.0);
}

header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11, 11, 13, 0.1) 0%, rgba(11, 11, 13, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
  animation: fadeInUp 1s var(--transition);
}

.hero-badge {
  background: rgba(255, 107, 53, 0.15);
  border: 1px solid var(--accent-orange);
  color: var(--accent-orange);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #ffffff 30%, #ffb703 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
}

.hero-content p {
  color: var(--text-secondary);
  font-size: 1.2rem;
  font-weight: 300;
}

/* 메인 대시보드 그리드 */
.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 80px;
}

@media (min-width: 992px) {
  .dashboard-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

/* 글래스모피즘 카드 스타일 */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 35px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.glass-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-lg);
}

.card-title-group {
  margin-bottom: 25px;
}

.card-subtitle {
  color: var(--accent-orange);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 5px;
}

.card-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* 추천 필터 및 컨트롤 */
.filter-section {
  margin-bottom: 30px;
}

.filter-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.btn-filter {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 10px 18px;
  border-radius: 30px;
  cursor: pointer;
  font-family: var(--font-family);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-filter:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.btn-filter.active {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #ffffff;
  box-shadow: var(--shadow-glow);
}

/* 룰렛 / 슬롯머신 스타일 원형 휠 */
.roulette-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  position: relative;
}

.wheel-outer {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  padding: 12px;
  background: linear-gradient(145deg, #181822, #0d0d12);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 2px solid rgba(255, 255, 255, 0.05);
}

.wheel-outer::after {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 25px solid var(--accent-orange);
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.5));
  z-index: 100;
}

.wheel-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  transition: transform 6s cubic-bezier(0.15, 0.85, 0.35, 1);
  transform: rotate(0deg);
  background: #101014;
}

.wheel-segment {
  position: absolute;
  width: 50%;
  height: 50%;
  left: 50%;
  top: 50%;
  transform-origin: 0% 0%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  box-sizing: border-box;
  padding-right: 30px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-primary);
  border-right: 1px solid rgba(255,255,255,0.05);
}

.wheel-segment span {
  transform: rotate(0);
  display: inline-block;
  max-width: 130px;
  text-align: right;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.wheel-center {
  position: absolute;
  width: 24px;
  height: 24px;
  background: radial-gradient(circle, #ffffff 0%, #cbd5e1 50%, #64748b 100%);
  border: 2px solid var(--bg-primary);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  z-index: 50;
  pointer-events: none;
}

.spin-actions {
  margin-top: 30px;
  width: 100%;
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* 주요 액션 버튼 */
.btn-primary {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #e65100 100%);
  color: #ffffff;
  border: none;
  padding: 16px 36px;
  border-radius: 30px;
  font-family: var(--font-family);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 20px var(--accent-orange-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(255, 107, 53, 0.5);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  padding: 16px 28px;
  border-radius: 30px;
  font-family: var(--font-family);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255,255,255,0.2);
}

/* 결과 표시 오버레이 */
.result-display {
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  width: 100%;
  display: none;
  animation: fadeIn 0.5s ease;
}

.result-display.active {
  display: block;
}

.result-tag {
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.result-name {
  font-size: 2.2rem;
  font-weight: 900;
  margin: 10px 0;
  color: #ffffff;
}

.result-details {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}

.detail-badge {
  background: rgba(255, 255, 255, 0.04);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.03);
}

/* 나만의 메뉴판 관리 사이드 패널 */
.menu-list-container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.custom-input-group {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}

.custom-input-group input {
  flex: 1;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  color: var(--text-primary);
  font-family: var(--font-family);
  font-size: 0.95rem;
  transition: var(--transition);
}

.custom-input-group input:focus {
  outline: none;
  border-color: var(--accent-orange);
  box-shadow: 0 0 10px rgba(255, 107, 53, 0.2);
}

.custom-input-group select {
  background: #1a1a20;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  padding: 0 15px;
  font-family: var(--font-family);
  cursor: pointer;
}

.btn-add {
  background: var(--accent-teal);
  color: #0b0b0d;
  border: none;
  width: 50px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  transition: var(--transition);
}

.btn-add:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.menu-items-list {
  list-style: none;
  overflow-y: auto;
  max-height: 400px;
  padding-right: 5px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  transition: var(--transition);
}

.menu-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateX(3px);
}

.menu-item-info {
  display: flex;
  flex-direction: column;
}

.menu-item-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.menu-item-category {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.btn-delete {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 5px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-delete:hover {
  color: #ff4d4d;
  transform: scale(1.15);
}

/* 추천 메뉴 리스트 그리드 섹션 */
.explore-section {
  margin-bottom: 80px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 35px;
}

.section-title h2 {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.section-title p {
  color: var(--text-secondary);
}

.food-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.food-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.food-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-lg);
}

.food-card-img-wrapper {
  height: 180px;
  position: relative;
  overflow: hidden;
}

.food-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.food-card:hover .food-card-img {
  transform: scale(1.08);
}

.food-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  align-items: flex-end;
  padding: 15px 20px;
}

.food-card-tag {
  background: var(--accent-orange);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
}

.food-card-content {
  padding: 20px;
}

.food-card-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.food-card-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 15px;
}

.food-card-meta {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.food-card-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* 푸터 */
footer {
  border-top: 1px solid var(--border-color);
  padding: 40px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

footer a {
  color: var(--accent-orange);
  text-decoration: none;
  font-weight: 600;
}

footer a:hover {
  text-decoration: underline;
}

/* 애니메이션 효과 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* 커스텀 모달 / 알림창 스타일 */
.confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: var(--accent-orange);
  pointer-events: none;
  z-index: 999;
}

/* 언어 전환 스위처 */
.lang-switcher {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  background: rgba(26, 26, 32, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  padding: 4px;
  border-radius: 30px;
  display: flex;
  gap: 4px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.lang-switcher:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(36, 36, 45, 0.85);
}

.btn-lang {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-family);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-lang:hover {
  color: var(--text-primary);
}

.btn-lang.active {
  background: var(--accent-orange);
  color: #ffffff;
  box-shadow: 0 2px 8px var(--accent-orange-glow);
}

/* 배민 & 쿠팡이츠 스타일 메뉴판 디자인 */
.baemin-store-header {
  background: linear-gradient(135deg, rgba(42, 193, 188, 0.08) 0%, rgba(26, 26, 32, 0.5) 100%);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(42, 193, 188, 0.15);
}

.store-badge {
  background: #2ac1bc;
  color: #0b0b0d;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.store-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.store-rating {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}

.star-rating {
  color: #ffb703;
  font-weight: 700;
}

.review-count {
  color: var(--text-secondary);
}

.store-info-row {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  gap: 8px;
}

/* 메뉴판 내부 검색창 */
.baemin-search-bar {
  display: flex;
  position: relative;
  margin-bottom: 15px;
}

.baemin-search-bar input {
  width: 100%;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  padding: 12px 45px 12px 20px;
  color: var(--text-primary);
  font-family: var(--font-family);
  font-size: 0.9rem;
  transition: var(--transition);
}

.baemin-search-bar input:focus {
  outline: none;
  border-color: #2ac1bc;
  box-shadow: 0 0 10px rgba(42, 193, 188, 0.2);
}

.baemin-search-bar .search-icon {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

/* 초기화 및 액션 영역 */
.baemin-actions-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 15px;
}

.btn-baemin-reset {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 6px 14px;
  font-size: 0.75rem;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-baemin-reset:hover {
  background: rgba(255, 77, 77, 0.1);
  border-color: rgba(255, 77, 77, 0.3);
  color: #ff4d4d;
}

/* 스크롤 가능한 메뉴판 영역 */
.menu-items-list {
  list-style: none;
  overflow-y: auto;
  max-height: 520px;
  padding-right: 5px;
}

/* 가게 메뉴 카드 스타일 */
.store-menu-card {
  display: flex;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 12px;
  transition: var(--transition);
  gap: 15px;
}

.store-menu-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(42, 193, 188, 0.25);
  transform: translateY(-2px);
}

.store-menu-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.store-menu-title-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.store-menu-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.popular-badge {
  background: rgba(255, 107, 53, 0.12);
  border: 1px solid var(--accent-orange);
  color: var(--accent-orange);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 4px;
}

.custom-badge {
  background: rgba(6, 214, 160, 0.12);
  border: 1px solid var(--accent-teal);
  color: var(--accent-teal);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 4px;
}

.store-menu-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.store-menu-price-row {
  font-size: 0.8rem;
  font-weight: 600;
  color: #2ac1bc;
  display: flex;
  align-items: center;
  gap: 10px;
}

.store-menu-meta {
  color: var(--text-muted);
  font-weight: 400;
}

/* 메뉴 카드 우측 */
.store-menu-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.store-menu-img-box {
  width: 75px;
  height: 75px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #2b1f1d, #14141a);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  font-size: 2.2rem;
  box-shadow: var(--shadow-sm);
}

/* 장바구니 담기 토글 버튼 */
.btn-baemin-cart {
  width: 75px;
  background: rgba(42, 193, 188, 0.1);
  border: 1px solid rgba(42, 193, 188, 0.3);
  color: #2ac1bc;
  padding: 5px 0;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-baemin-cart:hover {
  background: #2ac1bc;
  color: #0b0b0d;
}

.btn-baemin-cart.in-cart {
  background: #2ac1bc;
  border-color: #2ac1bc;
  color: #0b0b0d;
}

.btn-baemin-cart.in-cart:hover {
  background: #ff4d4d;
  border-color: #ff4d4d;
  color: #ffffff;
}

/* 커스텀 메뉴 삭제 전용 버튼 */
.btn-baemin-delete {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 2px;
  font-size: 0.75rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-baemin-delete:hover {
  color: #ff4d4d;
  transform: scale(1.15);
}

