@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");
.login-screen {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  gap: 0;
  text-align: center;
  overflow: hidden;
}
.login-screen.type-b {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.login-screen.type-b::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(191, 191, 191, 0) 0%, #2C2C2C 100%);
  z-index: 1;
}
.login-screen.type-b .brand-section,
.login-screen.type-b .form-section,
.login-screen.type-b .action-section {
  position: relative;
  z-index: 2;
}
.login-screen.type-b .action-section {
  padding: 0 20px;
}
.login-screen.type-b .action-section .divider {
  color: rgba(255, 255, 255, 0.6);
}
.login-screen.type-b .action-section .divider::before, .login-screen.type-b .action-section .divider::after {
  background-color: rgba(255, 255, 255, 0.3);
}
.login-screen.type-b .form-section {
  padding: 0 20px;
}
.login-screen.type-b .form-section .input-group {
  text-align: left;
  margin-bottom: 20px;
}
.login-screen.type-b .form-section .input-group label {
  display: block;
  font-size: 0.875rem;
  color: #FFFFFF;
  margin-bottom: 8px;
  padding-left: 4px;
}
.login-screen.type-b .form-section .input-group input {
  background: rgba(44, 35, 27, 0.7);
  border: none;
  border-radius: 0.625rem;
  color: #FFFFFF;
  text-align: left;
  padding-left: 20px;
}
.login-screen.type-b .form-section .input-group input::placeholder {
  color: rgba(255, 255, 255, 0.5);
  text-align: left;
}
.login-screen .brand-section,
.login-screen .form-section,
.login-screen .action-section {
  width: 100%;
}
.login-screen .brand-section .logo {
  width: 160px;
  height: 160px;
  margin: 50px auto -25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-screen .brand-section .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.login-screen .brand-section .tagline {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #F6F2EF;
  letter-spacing: -0.01em;
  margin-top: 0;
  margin-bottom: 50px;
  text-align: center;
}
.login-screen .brand-section .tagline span {
  font-weight: 700;
}
.login-screen .brand-section .tagline span.o {
  color: #FF9D79;
}
.login-screen .brand-section .tagline span.w {
  color: #F6F2EF;
}
.login-screen .brand-section .tagline .highlight {
  color: #E96B3D;
  font-weight: 600;
}
.login-screen .form-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0 20px;
}
.login-screen .form-section .input-group input {
  width: 100%;
  height: 50px;
  padding: 14px 20px;
  border: 1px solid #F6F2EF;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 500;
  background-color: #F6F2EF;
  color: #8F796F;
  outline: none;
  text-align: left;
  transition: border-color 0.2s;
}
.login-screen .form-section .input-group input::placeholder {
  color: #C9B2A8;
  text-align: left;
}
.login-screen .form-section .input-group input:focus {
  border-color: #E96B3D;
}
.login-screen .action-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 20px;
}
.login-screen .action-section .btn-primary {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #E96B3D 0%, #F9A15D 100%);
  border: none;
  border-radius: 15px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0px 6px 10px -3px rgba(255, 105, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}
.login-screen .action-section .btn-primary:active {
  transform: translateY(1px);
  box-shadow: 0 2px 5px rgba(233, 107, 61, 0.15);
}
.login-screen .action-section .divider {
  display: flex;
  align-items: center;
  color: #C9B2A8;
  font-size: 14px;
}
.login-screen .action-section .divider::before, .login-screen .action-section .divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #EAE0D9;
}
.login-screen .action-section .divider span {
  padding: 0 10px;
}
.login-screen .action-section .btn-secondary {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  border: 1px solid #EAE0D9;
  border-radius: 15px;
  color: #8F796F;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}
.login-screen .action-section .btn-secondary:hover {
  background-color: #FDFCFB;
}
.login-screen .action-section .btn-link {
  font-size: 0.875rem;
  color: #FFFFFF;
  text-decoration: underline;
  background: none;
  border: none;
  cursor: pointer;
  margin-top: 20px;
  display: inline-block;
}
.login-screen .action-section .footer-links {
  margin-top: 40px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}
.login-screen .action-section .footer-links a {
  color: #E96B3D;
  text-decoration: none;
  margin: 0 4px;
}
.login-screen .action-section .footer-links a:hover {
  text-decoration: underline;
}

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 400px;
  height: 70px;
  background-color: #FFFFFF;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid #F0EBE8;
  z-index: 1000;
  padding-bottom: env(safe-area-inset-bottom);
}
.bottom-nav .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: #8F796F;
  transition: color 0.2s;
}
.bottom-nav .nav-item .icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bottom-nav .nav-item .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1) opacity(0.6);
}
.bottom-nav .nav-item span {
  font-size: 11px;
  font-weight: 500;
}
.bottom-nav .nav-item.active {
  color: #E96B3D;
}
.bottom-nav .nav-item.active .icon img {
  filter: invert(53%) sepia(85%) saturate(541%) hue-rotate(335deg) brightness(96%) contrast(90%);
  opacity: 1;
}

.home-screen {
  padding-bottom: 90px;
  min-height: 100vh;
}
.home-screen .home-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: var(--03, #FBFAF8);
}
.home-screen .home-header .user-profile {
  display: flex;
  align-items: center;
  gap: 8px;
}
.home-screen .home-header .user-profile .avatar {
  display: flex;
  width: 2.875rem;
  height: 2.875rem;
  align-items: center;
  justify-content: center;
  padding: 0.8125rem;
  border-radius: 62.4375rem;
  background: var(--04, #F6F2EF);
}
.home-screen .home-header .user-profile .avatar img {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}
.home-screen .home-header .user-profile .greeting {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  color: #3A332F;
}
.home-screen .home-header .user-profile .greeting strong {
  font-weight: 700;
}
.home-screen .home-header .user-profile .greeting span {
  font-weight: 500;
}
.home-screen .home-header .user-profile .greeting .small-greeting {
  font-size: 0.875rem;
  font-weight: 500;
}
.home-screen .home-header .btn-notice {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  position: relative;
}
.home-screen .home-header .btn-notice img {
  width: 24px;
}
.home-screen .home-header .btn-notice.has-new::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 4px;
  height: 4px;
  background-color: #FF5C5C;
  border-radius: 50%;
}
.home-screen .main-point-card {
  margin: 0 20px 20px;
  background: linear-gradient(91deg, #F87D3B 0%, #FFB800 100%);
  border-radius: 20px;
  padding: 10px 20px 20px;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(233, 107, 61, 0.1);
  min-height: 122px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
}
.home-screen .main-point-card .point-top-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}
.home-screen .main-point-card .text-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.home-screen .main-point-card .text-group .label {
  font-size: 12px;
  font-weight: 500;
  opacity: 1;
  margin-bottom: 0;
  display: block;
  color: var(--03, #FBFAF8);
}
.home-screen .main-point-card .text-group .amount {
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: var(--03, #FBFAF8);
  text-shadow: 0 2px 2px rgba(87, 62, 51, 0.2);
}
.home-screen .main-point-card .text-group .amount .unit {
  font-size: 18px;
  font-weight: 600;
}
.home-screen .main-point-card .point-bottom-row {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-screen .main-point-card .point-history-link {
  font-size: 12px;
  font-weight: 500;
  color: var(--03, #FBFAF8);
  opacity: 1;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.home-screen .main-point-card .point-history-link .icon-arrow {
  font-size: 12px;
  font-weight: 700;
}
.home-screen .main-point-card .coin-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  flex-shrink: 0;
}
.home-screen .quick-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0 20px 24px;
}
.home-screen .quick-stats .stat-card {
  background-color: #FFFFFF;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #F0EBE8;
}
.home-screen .quick-stats .stat-card .icon-box {
  width: 3.125rem;
  height: 3.125rem;
  aspect-ratio: 1/1;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.home-screen .quick-stats .stat-card .icon-box img {
  width: 32px;
  height: auto;
  object-fit: contain;
}
.home-screen .quick-stats .stat-card .stat-label {
  font-size: 0.875rem;
  color: #8F796F;
  margin-bottom: 4px;
  display: block;
}
.home-screen .quick-stats .stat-card .stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 100%;
  color: var(--08, #3A332F);
}
.home-screen .referral-section {
  margin: 0 20px 32px;
  padding: 20px;
  background: #FFF;
  border-radius: 1.25rem;
  border: 1px solid var(--04, #F6F2EF);
  box-shadow: 0 4px 10px -3px rgba(143, 121, 111, 0.1);
}
.home-screen .referral-section .section-header {
  margin-bottom: 24px;
}
.home-screen .referral-section .section-header h3 {
  color: var(--08, #3A332F);
  /* 05_B */
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 1rem */
  margin-bottom: 8px;
}
.home-screen .referral-section .section-header .description-row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.home-screen .referral-section .section-header .description-row .description {
  color: var(--07, #8F796F);
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 100%;
}
.home-screen .referral-section .section-header .description-row .btn-info {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--07, #8F796F);
}
.home-screen .referral-section .section-header .description-row .btn-info .info-icon {
  font-size: 1rem;
  line-height: 1;
  opacity: 0.7;
}
.home-screen .referral-section .invite-row {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.home-screen .referral-section .invite-row .code-box {
  flex: 6;
  background-color: #F6F2EF;
  padding: 14px;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-screen .referral-section .invite-row .code-box .code {
  font-size: 1rem;
  font-weight: 700;
  color: #3A332F;
  line-height: 100%;
}
.home-screen .referral-section .invite-row .share-copy {
  flex: 4;
  display: flex;
  gap: 8px;
}
.home-screen .referral-section .invite-row .share-copy button {
  flex: 1;
  aspect-ratio: 1/1;
  border: none;
  border-radius: 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.home-screen .referral-section .invite-row .share-copy button img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.home-screen .referral-section .invite-row .share-copy button:active {
  opacity: 0.8;
}
.home-screen .referral-section .invite-row .share-copy button.btn-copy {
  background: #FFF7F2;
}
.home-screen .referral-section .invite-row .share-copy button.btn-copy img {
  filter: invert(47%) sepia(91%) saturate(545%) hue-rotate(336deg) brightness(96%) contrast(92%);
}
.home-screen .referral-section .invite-row .share-copy button.btn-share {
  background: linear-gradient(90deg, #E96B3D 0%, #F9A15D 100%);
}
.home-screen .referral-section .invite-row .share-copy button.btn-share img {
  filter: brightness(0) invert(1);
}
.home-screen .referral-section .reward-distribution {
  margin-bottom: 20px;
  display: flex;
  padding: 0.9375rem 1.25rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3125rem;
  align-self: stretch;
  border-radius: 0.625rem;
  background: #FFF9F5;
}
.home-screen .referral-section .reward-distribution .reward-title {
  color: var(--14, #E96B3D);
  display: flex;
  align-items: center;
  gap: 4px;
  /* 07_B */
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 0.75rem */
}
.home-screen .referral-section .reward-distribution .reward-title img {
  height: 0.75rem;
  width: auto;
}
.home-screen .referral-section .reward-distribution .reward-desc {
  color: var(--07, #8F796F);
  /* 09_R */
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 0.8125rem */
}

.store-list-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px 16px;
}
.store-list-section .section-header .section-title {
  padding: 0;
  color: var(--08, #3A332F);
  /* 05_B */
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
.store-list-section .section-header .btn-manage {
  display: flex;
  align-items: center;
  gap: 2px;
  background: none;
  border: none;
  color: var(--14, #E96B3D);
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  padding: 4px 0;
}
.store-list-section .section-header .btn-manage .icon-manage {
  width: 12px;
  height: 12px;
}
.store-list-section .section-header .btn-manage:hover {
  color: var(--14, #E96B3D);
}
.store-list-section .store-grid {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.store-list-section .store-grid .store-card {
  display: flex;
  padding: 1.25rem;
  align-items: flex-start;
  gap: 0.625rem;
  align-self: stretch;
  border-radius: 1.25rem;
  border: 1px solid var(--04, #F6F2EF);
  background: var(--01, #FFF);
}
.store-list-section .store-grid .store-card.active {
  border-radius: 1.25rem;
  border: 1px solid var(--14, #E96B3D);
  /* dr_shadow_o */
  box-shadow: 0 6px 10px -3px rgba(255, 105, 0, 0.1);
}
.store-list-section .store-grid .store-card.preparing {
  border-color: var(--04, #F6F2EF);
  cursor: not-allowed;
  opacity: 0.5;
}
.store-list-section .store-grid .store-card.preparing .store-thumb img {
  filter: grayscale(100%);
}
.store-list-section .store-grid .store-card.preparing .store-info .reward-badge {
  color: var(--07, #8F796F);
}
.store-list-section .store-grid .store-card.preparing .store-info .name {
  color: var(--07, #8F796F);
}
.store-list-section .store-grid .store-card.preparing .store-info .name-sm {
  color: var(--10, #C9B2A8);
}
.store-list-section .store-grid .store-card.preparing .store-info .tags span {
  background-color: #EDEEF0;
  color: var(--10, #C9B2A8);
}
.store-list-section .store-grid .store-card.preparing .store-info .my-shop-point {
  color: var(--10, #C9B2A8);
}
.store-list-section .store-grid .store-card.preparing .store-info .my-shop-point .points {
  color: var(--10, #C9B2A8);
}
.store-list-section .store-grid .store-card.marketing {
  border-color: var(--04, #F6F2EF);
  background: #DADADA;
  opacity: 0.5;
}
.store-list-section .store-grid .store-card.marketing .store-thumb img {
  filter: grayscale(100%);
}
.store-list-section .store-grid .store-card.marketing .store-info .reward-badge {
  color: var(--07, #8F796F);
}
.store-list-section .store-grid .store-card .store-thumb {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background-color: #EEE;
  overflow: hidden;
  position: relative;
}
.store-list-section .store-grid .store-card .store-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.store-list-section .store-grid .store-card .store-thumb .no-img-placeholder {
  width: 100%;
  height: 100%;
  background-color: #F6F2EF;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}
.store-list-section .store-grid .store-card .store-thumb .no-img-placeholder span {
  font-size: 0.8125rem;
  color: #8F796F;
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: keep-all;
}
.store-list-section .store-grid .store-card .store-thumb .status-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border-radius: 16px;
}
.store-list-section .store-grid .store-card .store-thumb .status-overlay span {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
.store-list-section .store-grid .store-card .store-thumb .status-overlay.preparing {
  background-color: rgba(0, 0, 0, 0.6);
}
.store-list-section .store-grid .store-card .store-thumb .status-overlay.preparing span {
  color: #FFF;
}
.store-list-section .store-grid .store-card .store-thumb .status-overlay.marketing {
  background-color: rgba(255, 255, 255, 0.85);
  border: 1px solid #EAEAEA;
}
.store-list-section .store-grid .store-card .store-thumb .status-overlay.marketing span {
  color: #3A332F;
}
.store-list-section .store-grid .store-card .store-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.store-list-section .store-grid .store-card .store-info .status-guidance {
  font-size: 11px;
  color: #8F796F;
  margin-bottom: -2px;
  font-weight: 500;
}
.store-list-section .store-grid .store-card .store-info .reward-badge {
  display: inline-block;
  padding: 2px 0px 8px;
  color: #E96B3D;
  font-size: 11px;
  font-weight: 700;
  border-radius: 6px;
}
.store-list-section .store-grid .store-card .store-info .name {
  color: var(--08, #3A332F);
  /* 06_B */
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 0.875rem */
}
.store-list-section .store-grid .store-card .store-info .name-sm {
  color: var(--07, #8F796F);
  /* 08_M */
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  /* 0.6875rem */
}
.store-list-section .store-grid .store-card .store-info .tags {
  display: flex;
  gap: 6px;
}
.store-list-section .store-grid .store-card .store-info .tags span {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #8F796F;
  background-color: #F6F2EF;
  padding: 2px 6px;
  border-radius: 4px;
}
.store-list-section .store-grid .store-card .store-info .tags span .icon-tag {
  width: 12px;
  height: 12px;
}
.store-list-section .store-grid .store-card .store-info .my-shop-point {
  margin-top: 15px;
  color: var(--14, #E96B3D);
  /* 09_R */
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 0.8125rem */
}
.store-list-section .store-grid .store-card .store-info .my-shop-point .points {
  color: var(--14, #E96B3D);
  /* 07_B */
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 0.75rem */
}
.store-list-section .store-grid .store-card .btn-go {
  align-self: center;
  width: 24px;
  height: 24px;
  filter: grayscale(1) opacity(0.3);
}

.home-screen .action-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 20px 40px;
}
.home-screen .action-section .btn-primary {
  width: 100%;
  padding: 18px;
  background: linear-gradient(90deg, #E96B3D 0%, #F9A15D 100%);
  border: none;
  border-radius: 12px;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(233, 107, 61, 0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}
.home-screen .action-section .btn-primary:active {
  transform: translateY(1px);
  box-shadow: 0 2px 5px rgba(233, 107, 61, 0.15);
}

.store-page {
  min-height: 100vh;
}
.store-page .container {
  padding-bottom: 120px;
}
.store-page .hero-section {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.store-page .hero-section .hero-slider {
  display: flex;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.store-page .hero-section .hero-slider::-webkit-scrollbar {
  display: none;
}
.store-page .hero-section .hero-slider .slide {
  min-width: 100%;
  height: 100%;
  scroll-snap-align: start;
}
.store-page .hero-section .hero-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.store-page .hero-section .header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}
.store-page .hero-section .header-overlay .btn-back {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #FFF;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0px 4px 10px -3px rgba(143, 121, 111, 0.2);
  transition: transform 0.2s, background-color 0.2s;
  z-index: 100;
}
.store-page .hero-section .header-overlay .btn-back img {
  width: 1.18419rem;
  height: 1.03125rem;
  flex-shrink: 0;
  aspect-ratio: 16.08/14;
}
.store-page .hero-section .header-overlay .btn-back:active {
  transform: scale(0.9);
  background-color: #F8F8F8;
}
.store-page .hero-section .header-overlay .btn-action {
  width: 40px;
  height: 40px;
  background-color: rgba(58, 51, 47, 0.5);
  border: none;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s;
}
.store-page .hero-section .header-overlay .btn-action img {
  width: 24px;
  height: 24px;
  display: block;
}
.store-page .hero-section .header-overlay .btn-action:active {
  background-color: rgba(58, 51, 47, 0.7);
}
.store-page .hero-section .header-overlay .btn-back img {
  transform: none;
}
.store-page .hero-section .header-overlay .right-actions {
  display: flex;
  gap: 12px;
}
.store-page .hero-section .slider-dots {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
  padding: 6px 10px;
  border-radius: 12px;
}
.store-page .hero-section .slider-dots .dot {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}
.store-page .hero-section .slider-dots .dot.active {
  background: #FFF;
  width: 18px;
  border-radius: 3px;
}
.store-page .store-info-container {
  margin: -40px 20px 0.9375rem;
  position: relative;
  z-index: 20;
}
.store-page .store-info-container .store-main-card {
  background-color: #FFFFFF;
  border-radius: 1.25rem;
  padding: 24px 20px;
  box-shadow: 0 10px 30px -10px rgba(143, 121, 111, 0.15);
}
.store-page .store-info-container .store-main-card .card-header {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}
.store-page .store-info-container .store-main-card .card-header .store-thumb {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #EEE;
  flex-shrink: 0;
}
.store-page .store-info-container .store-main-card .card-header .store-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.store-page .store-info-container .store-main-card .card-header .title-area {
  flex: 1;
}
.store-page .store-info-container .store-main-card .card-header .title-area .reward-badge {
  display: inline-block;
  color: #E96B3D;
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 4px;
  background: none;
  padding: 0;
}
.store-page .store-info-container .store-main-card .card-header .title-area .store-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #3A332F;
  margin-bottom: 4px;
}
.store-page .store-info-container .store-main-card .card-header .title-area .category {
  font-size: 0.875rem;
  color: #3A332F;
  font-weight: 500;
}
.store-page .store-info-container .store-main-card .info-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.store-page .store-info-container .store-main-card .info-rows .info-row {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #8F796F;
  font-size: 0.875rem;
}
.store-page .store-info-container .store-main-card .info-rows .info-row a {
  color: inherit;
  text-decoration: none;
  font-family: inherit;
}
.store-page .store-info-container .store-main-card .info-rows .info-row .icon {
  width: 14px;
  height: 14px;
  opacity: 1;
  object-fit: contain;
  background: none !important;
}
.store-page .store-info-container .store-main-card .service-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.store-page .store-info-container .store-main-card .service-tags .tag {
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: #F6F2EF;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.8125rem;
  color: #8F796F;
  font-weight: 500;
}
.store-page .store-info-container .store-main-card .service-tags .tag img {
  width: 12px;
  height: 12px;
}
.store-page .store-info-container .store-main-card .btn-reserve {
  width: 100%;
  padding: 14px;
  background-color: #FFFFFF;
  border: 1px solid #EAE0D9;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #3A332F;
  cursor: pointer;
  transition: all 0.2s;
}
.store-page .store-info-container .store-main-card .btn-reserve:active {
  background-color: #F6F2EF;
}
.store-page .store-tabs {
  display: flex;
  padding: 20px 20px 0;
  gap: 24px;
  border-bottom: 1px solid #F6F2EF;
  margin-bottom: 20px;
}
.store-page .store-tabs .tab-item {
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 600;
  color: #C9B2A8;
  cursor: pointer;
  position: relative;
}
.store-page .store-tabs .tab-item.active {
  color: #E96B3D;
}
.store-page .store-tabs .tab-item.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #E96B3D;
}
.store-page #stickyTrigger {
  width: 100%;
  height: 1px;
  visibility: hidden;
}
.store-page .menu-section {
  padding: 0 20px 24px;
}
.store-page .menu-section .section-title {
  font-size: 1rem;
  font-weight: 700;
  color: #3A332F;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.store-page .menu-section .category-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  margin-bottom: 20px;
  padding: 12px 20px;
  position: sticky;
  top: 0;
  z-index: 100;
  margin-left: -20px;
  margin-right: -20px;
  background-color: transparent;
  transition: background-color 0.2s ease, border-bottom 0.2s ease;
}
.store-page .menu-section .category-scroll.is-stuck {
  background-color: #FFFFFF;
  border-bottom: 1px solid #F6F2EF;
}
.store-page .menu-section .category-scroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.store-page .menu-section .category-scroll::-webkit-scrollbar {
  display: none;
}
.store-page .menu-section .category-scroll .cat-item {
  white-space: nowrap;
  padding: 8px 16px;
  background-color: #FFFFFF;
  border: 1px solid #F6F2EF;
  border-radius: 20px;
  font-size: 0.875rem;
  color: #8F796F;
  cursor: pointer;
}
.store-page .menu-section .category-scroll .cat-item.active {
  background: linear-gradient(90deg, #E96B3D 0%, #F9A15D 100%);
  border-color: transparent;
  color: #FFFFFF;
  font-weight: 600;
}
.store-page .menu-section .menu-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.store-page .menu-section .menu-list .menu-category-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 0px;
}
.store-page .menu-section .menu-list .menu-category-group .category-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #3A332F;
  margin-bottom: 2px;
}
.store-page .menu-section .menu-list .menu-card {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 12px;
  display: flex;
  gap: 12px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  cursor: pointer;
}
.store-page .menu-section .menu-list .menu-card:active {
  border-color: rgba(233, 107, 61, 0.3);
  background-color: rgba(233, 107, 61, 0.02);
  transform: scale(0.98);
}
.store-page .menu-section .menu-list .menu-card.soldout {
  cursor: not-allowed !important;
  filter: grayscale(1);
  opacity: 0.7;
}
.store-page .menu-section .menu-list .menu-card.soldout:active {
  transform: none;
  border-color: transparent;
  background-color: #FFFFFF;
}
.store-page .menu-section .menu-list .menu-card .item-img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}
.store-page .menu-section .menu-list .menu-card .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.store-page .menu-section .menu-list .menu-card .item-img .no-img-placeholder {
  width: 100%;
  height: 100%;
  background-color: #F6F2EF;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.store-page .menu-section .menu-list .menu-card .item-img .no-img-placeholder span {
  font-size: 0.8125rem;
  color: #8F796F;
  text-align: center;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.store-page .menu-section .menu-list .menu-card .item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.store-page .menu-section .menu-list .menu-card .item-info .item-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #3A332F;
  margin-bottom: 4px;
  line-height: 1.4;
}
.store-page .menu-section .menu-list .menu-card .item-info .item-name .badge-outline {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 500;
  color: #8F796F;
  padding: 1px 5px;
  border-radius: 6.1875rem;
  border: 1px solid var(--05, #DAC7BE);
  background: var(--01, #FFF);
  margin-left: 6px;
  vertical-align: middle;
  white-space: nowrap;
}
.store-page .menu-section .menu-list .menu-card .item-info .item-description {
  font-size: 0.8125rem;
  color: #8F796F;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.store-page .menu-section .menu-list .menu-card .item-info .price-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.store-page .menu-section .menu-list .menu-card .item-info .price-area .price {
  font-size: 1rem;
  font-weight: 700;
  color: #3A332F;
}
.store-page .menu-section .menu-list .menu-card .item-info .price-area .btn-add {
  width: 24px;
  height: 24px;
  background-color: #F6F2EF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  color: #8F796F;
  font-weight: bold;
}
.store-page .order-summary-bar {
  position: fixed;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 400px;
  background-color: #FFFFFF;
  border-top: 1px solid #F6F2EF;
  border-radius: 20px 20px 0 0;
  padding: 20px 20px 24px;
  display: none;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
  z-index: 110;
  transition: transform 0.3s ease;
}
.store-page .order-summary-bar.active {
  display: flex;
}
.store-page .order-summary-bar .summary-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}
.store-page .order-summary-bar .summary-info .left-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.store-page .order-summary-bar .summary-info .left-info .count {
  font-size: 0.875rem;
  color: #8F796F;
}
.store-page .order-summary-bar .summary-info .left-info .total-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #3A332F;
}
.store-page .order-summary-bar .summary-info .right-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  color: #E96B3D;
}
.store-page .order-summary-bar .summary-info .right-info .label {
  font-size: 0.75rem;
}
.store-page .order-summary-bar .summary-info .right-info .points {
  font-size: 0.9375rem;
  font-weight: 700;
}
.store-page .order-summary-bar .btn-view-cart {
  width: 100%;
  background: linear-gradient(90deg, #E96B3D 0%, #F9A15D 100%);
  color: #FFFFFF;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(233, 107, 61, 0.2);
}
.store-page .option-sheet-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: flex-end;
}
.store-page .option-sheet-overlay.active {
  display: flex;
}
.store-page .option-sheet-overlay .option-sheet {
  width: 100%;
  max-width: 400px;
  background-color: #FFFFFF;
  border-radius: 1.5rem 1.5rem 0 0;
  padding: 0;
  animation: slideInUp 0.3s ease-out;
  position: relative;
  overflow: hidden;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}
.store-page .option-sheet-overlay .option-sheet::before {
  content: "";
  display: block;
  width: 40px;
  height: 4px;
  background-color: #EAE0D9;
  border-radius: 2px;
  margin: 12px auto 0;
  flex-shrink: 0;
}
.store-page .option-sheet-overlay .option-sheet .img-view {
  width: 100%;
  height: 11.25rem;
  background-color: #F6F2EF;
  flex-shrink: 0;
}
.store-page .option-sheet-overlay .option-sheet .img-view img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.store-page .option-sheet-overlay .option-sheet .img-view .no-img-placeholder {
  width: 100%;
  height: 100%;
  background-color: #F6F2EF;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.store-page .option-sheet-overlay .option-sheet .img-view .no-img-placeholder span {
  font-size: 1.5rem;
  color: #8F796F;
  text-align: center;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.store-page .option-sheet-overlay .option-sheet .sheet-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background-color: #FFFFFF;
  flex-shrink: 0;
}
.store-page .option-sheet-overlay .option-sheet .sheet-header h2 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #3A332F;
  text-shadow: none;
  margin: 0;
  display: block;
  opacity: 1;
}
.store-page .option-sheet-overlay .option-sheet .sheet-header .btn-close {
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  font-size: 1.75rem;
  color: #8F796F;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  pointer-events: auto;
  backdrop-filter: none;
}
.store-page .option-sheet-overlay .option-sheet .sheet-body {
  overflow-y: auto;
  padding-bottom: 20px;
}
.store-page .option-sheet-overlay .option-sheet .sheet-body .restriction-warning {
  display: none;
  color: #E96B3D;
  background: #FFF4EE;
  padding: 12px;
  border-radius: 8px;
  margin: 0 20px 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  white-space: pre-line;
}
.store-page .option-sheet-overlay .option-sheet .product-preview {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
.store-page .option-sheet-overlay .option-sheet .product-preview .text {
  display: flex;
  flex-direction: column;
  padding: 20px 20px 0;
}
.store-page .option-sheet-overlay .option-sheet .product-preview .text .price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #3A332F;
  margin-bottom: 8px;
}
.store-page .option-sheet-overlay .option-sheet .product-preview .text .name {
  font-size: 1rem;
  color: #8F796F;
  font-weight: 400;
  margin-bottom: 8px;
}
.store-page .option-sheet-overlay .option-sheet .product-preview .text .desc {
  font-size: 0.875rem;
  color: #8F796F;
  line-height: 1.5;
}
.store-page .option-sheet-overlay .option-sheet .option-group {
  margin-bottom: 24px;
  padding: 0 20px;
}
.store-page .option-sheet-overlay .option-sheet .option-group .group-title {
  font-size: 1rem;
  font-weight: 700;
  color: #3A332F;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
}
.store-page .option-sheet-overlay .option-sheet .option-group .group-title .essential {
  color: #E96B3D;
  font-size: 0.75rem;
  margin-left: 8px;
}
.store-page .option-sheet-overlay .option-sheet .option-group .option-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.store-page .option-sheet-overlay .option-sheet .option-group .option-list .option-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.store-page .option-sheet-overlay .option-sheet .option-group .option-list .option-item .label-area {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: #3A332F;
  flex: 1;
}
.store-page .option-sheet-overlay .option-sheet .option-group .option-list .option-item .label-area .check-icon {
  width: 20px;
  height: 20px;
  border: 1px solid #EAE0D9;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  background-color: #FFFFFF;
  box-sizing: border-box;
}
.store-page .option-sheet-overlay .option-sheet .option-group .option-list .option-item.selected .label-area .check-icon {
  border: 6px solid #E96B3D;
}
.store-page .option-sheet-overlay .option-sheet .option-group .option-list .option-item.checkbox-type .label-area .check-icon {
  border-radius: 4px;
}
.store-page .option-sheet-overlay .option-sheet .option-group .option-list .option-item.checkbox-type.selected .label-area .check-icon {
  background-color: #E96B3D;
  border: none;
}
.store-page .option-sheet-overlay .option-sheet .option-group .option-list .option-item.checkbox-type.selected .label-area .check-icon::after {
  content: "✔";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
}
.store-page .option-sheet-overlay .option-sheet .option-group .option-list .option-item .option-qty {
  display: none;
  align-items: center;
  gap: 8px;
  background: #F6F2EF;
  border-radius: 4px;
  padding: 2px;
}
.store-page .option-sheet-overlay .option-sheet .option-group .option-list .option-item .option-qty button {
  width: 24px;
  height: 24px;
  border: none;
  background: none;
  font-weight: bold;
  cursor: pointer;
}
.store-page .option-sheet-overlay .option-sheet .option-group .option-list .option-item .option-qty span {
  font-size: 0.875rem;
  font-weight: 600;
}
.store-page .option-sheet-overlay .option-sheet .option-group .option-list .option-item.selected .option-qty {
  display: flex;
}
.store-page .option-sheet-overlay .option-sheet .option-group .option-list .option-item .price-plus {
  font-size: 0.875rem;
  color: #8F796F;
}
.store-page .option-sheet-overlay .option-sheet .quantity-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  padding: 30px 20px;
  border-top: 1px solid #F6F2EF;
  margin-bottom: 32px;
}
.store-page .option-sheet-overlay .option-sheet .quantity-section .label {
  font-size: 1rem;
  font-weight: 700;
  color: #3A332F;
}
.store-page .option-sheet-overlay .option-sheet .quantity-section .qty-selector {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: #F6F2EF;
  padding: 6px 12px;
  border-radius: 100px;
}
.store-page .option-sheet-overlay .option-sheet .quantity-section .qty-selector button {
  background: none;
  border: none;
  font-size: 1.25rem;
  font-weight: 600;
  color: #3A332F;
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.store-page .option-sheet-overlay .option-sheet .quantity-section .qty-selector button:disabled {
  color: #C9B2A8;
  cursor: not-allowed;
}
.store-page .option-sheet-overlay .option-sheet .quantity-section .qty-selector .qty {
  font-size: 1rem;
  font-weight: 700;
  color: #3A332F;
  min-width: 20px;
  text-align: center;
}
.store-page .option-sheet-overlay .option-sheet .btn-add-cart-wrapper {
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}
.store-page .option-sheet-overlay .option-sheet .btn-add-cart-wrapper .btn-add-cart {
  width: 100%;
  padding: 18px;
  background: linear-gradient(90deg, #E96B3D 0%, #F9A15D 100%);
  border: none;
  border-radius: 12px;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(233, 107, 61, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 24px;
  padding-right: 24px;
}
.store-page .option-sheet-overlay .option-sheet .btn-add-cart-wrapper .btn-add-cart:disabled {
  justify-content: center;
}
.store-page .option-sheet-overlay .option-sheet .btn-add-cart-wrapper .btn-add-cart .price-total {
  font-size: 1.125rem;
}
.store-page #recomOverlay .cart-sheet {
  background-color: #FBFAF8;
}
.store-page #recomOverlay .cart-sheet .sheet-header {
  border-bottom: 1px solid var(--05, #E2D4CE);
  margin: 0 20px;
  padding: 20px 0;
}
.store-page #recomOverlay .cart-sheet .sheet-header h2 {
  font-size: 1.25rem;
  color: #3A332F;
}
.store-page #recomOverlay .cart-sheet .sheet-body {
  padding: 0 20px 40px;
}
.store-page #recomOverlay .cart-sheet .sheet-body .cart-list {
  padding: 0;
}
.store-page #recomOverlay .cart-sheet .sheet-body .cart-item:first-child {
  margin-top: 20px;
}
.store-page #recomOverlay .cart-sheet .sheet-body .cart-item {
  background-color: #F6F2EF;
  border-radius: 1.25rem;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
  margin-bottom: 12px;
}
.store-page #recomOverlay .cart-sheet .sheet-body .cart-item .item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.store-page #recomOverlay .cart-sheet .sheet-body .cart-item .item-header .item-name {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #3A332F;
}
.store-page #recomOverlay .cart-sheet .sheet-body .cart-item .item-header .status-badge {
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.store-page #recomOverlay .cart-sheet .sheet-body .cart-item .item-header .status-badge.pending {
  color: #FF8B02;
  background-color: #FFF8D4;
  border: 1px solid #FFD6A6;
}
.store-page #recomOverlay .cart-sheet .sheet-body .cart-item .item-header .status-badge.requested {
  color: #34C17B;
  background-color: #EEFFEF;
  border: 1px solid #BFEAD5;
}
.store-page #recomOverlay .cart-sheet .sheet-body .cart-item .item-header .status-badge.completed {
  color: #0091CA;
  background-color: #E5F6FF;
  border: 1px solid #BCD7E5;
}
.store-page #recomOverlay .cart-sheet .sheet-body .cart-item .item-header .status-badge.rejected {
  color: #FF4E42;
  background-color: #FFF0EF;
  border: 1px solid #FBD3D3;
}
.store-page #recomOverlay .cart-sheet .sheet-body .cart-item .item-options {
  font-size: 0.875rem;
  color: #8F796F;
  margin-bottom: 16px;
}
.store-page #recomOverlay .cart-sheet .sheet-body .cart-item .item-footer .btn-share-link {
  width: 100%;
  height: 44px;
  background-color: #F6F2EF;
  border: none;
  border-radius: 10px;
  font-size: 0.875rem;
  color: #E96B3D;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.store-page #recomOverlay .cart-sheet .sheet-body .cart-item .item-footer .btn-share-link img {
  width: 14px;
  height: 14px;
  filter: invert(41%) sepia(85%) saturate(1215%) hue-rotate(338deg) brightness(98%) contrast(88%);
}
.store-page #recomOverlay .cart-sheet .sheet-body .cart-item .item-footer .btn-share-link:active {
  background-color: #F0EDE9;
}
.store-page .cart-sheet-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  display: none;
  align-items: flex-end;
  justify-content: center;
}
.store-page .cart-sheet-overlay.active {
  display: flex;
}
.store-page .cart-sheet-overlay .cart-sheet {
  width: 100%;
  max-width: 400px;
  background-color: #FFFFFF;
  border-radius: 1.5rem 1.5rem 0 0;
  padding: 0;
  animation: slideInUp 0.3s ease-out;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.store-page .cart-sheet-overlay .cart-sheet .sheet-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 20px;
  border-bottom: 1px solid #F6F2EF;
}
.store-page .cart-sheet-overlay .cart-sheet .sheet-header h2 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #3A332F;
  margin: 0;
}
.store-page .cart-sheet-overlay .cart-sheet .sheet-header .btn-close {
  background: none;
  border: none;
  font-size: 1.75rem;
  color: #8F796F;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 32px;
  height: 32px;
}
.store-page .cart-sheet-overlay .cart-sheet .sheet-body {
  overflow-y: auto;
  padding: 24px 0 20px;
  display: flex;
  flex-direction: column;
}
.store-page .cart-sheet-overlay .cart-sheet .sheet-body .cart-list {
  padding: 0 20px;
}
.store-page .cart-sheet-overlay .cart-sheet .sheet-body .cart-item {
  padding: 24px;
  border-bottom: none;
  background-color: #F6F2EF;
  border-radius: 1.25rem;
  margin-bottom: 12px;
  position: relative;
}
.store-page .cart-sheet-overlay .cart-sheet .sheet-body .cart-item.sold-out {
  opacity: 0.8;
  background-color: #f1f1f1;
}
.store-page .cart-sheet-overlay .cart-sheet .sheet-body .cart-item.sold-out .item-name {
  color: #999 !important;
  text-decoration: line-through;
}
.store-page .cart-sheet-overlay .cart-sheet .sheet-body .cart-item.sold-out .qty-control {
  pointer-events: none;
  opacity: 0.5;
}
.store-page .cart-sheet-overlay .cart-sheet .sheet-body .cart-item.sold-out .sold-out-badge {
  background-color: #E96B3D;
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
}
.store-page .cart-sheet-overlay .cart-sheet .sheet-body .cart-item .item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}
.store-page .cart-sheet-overlay .cart-sheet .sheet-body .cart-item .item-header .item-name {
  font-size: 1rem;
  font-weight: 700;
  color: #3A332F;
}
.store-page .cart-sheet-overlay .cart-sheet .sheet-body .cart-item .item-header .btn-delete {
  background: url("../assets/icon_trash.svg") no-repeat center center;
  background-size: contain;
  border: none;
  width: 18px;
  height: 18px;
  cursor: pointer;
  font-size: 0;
  padding: 0;
  margin-left: 10px;
}
.store-page .cart-sheet-overlay .cart-sheet .sheet-body .cart-item .item-options {
  font-size: 0.875rem;
  color: #8F796F;
  margin-bottom: 16px;
}
.store-page .cart-sheet-overlay .cart-sheet .sheet-body .cart-item .item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.store-page .cart-sheet-overlay .cart-sheet .sheet-body .cart-item .item-footer .qty-control {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #EAE0D9;
  border-radius: 4px;
  padding: 4px 8px;
}
.store-page .cart-sheet-overlay .cart-sheet .sheet-body .cart-item .item-footer .qty-control button {
  background: none;
  border: none;
  font-size: 1rem;
  color: #3A332F;
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.store-page .cart-sheet-overlay .cart-sheet .sheet-body .cart-item .item-footer .qty-control .qty {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #3A332F;
  min-width: 16px;
  text-align: center;
}
.store-page .cart-sheet-overlay .cart-sheet .sheet-body .cart-item .item-footer .item-price {
  font-size: 1rem;
  font-weight: 700;
  color: #3A332F;
}
.store-page .cart-sheet-overlay .cart-sheet .sheet-body .add-more-btn-area {
  padding: 24px 20px;
  text-align: center;
  border-bottom: 8px solid #F6F2EF;
}
.store-page .cart-sheet-overlay .cart-sheet .sheet-body .add-more-btn-area .btn-add-more {
  background: none;
  border: 1px solid #EAE0D9;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #3A332F;
  cursor: pointer;
  width: 100%;
}
.store-page .cart-sheet-overlay .cart-sheet .sheet-body .order-summary {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.store-page .cart-sheet-overlay .cart-sheet .sheet-body .order-summary .summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  color: #3A332F;
}
.store-page .cart-sheet-overlay .cart-sheet .sheet-body .order-summary .summary-row .label {
  font-weight: 400;
}
.store-page .cart-sheet-overlay .cart-sheet .sheet-body .order-summary .summary-row .value {
  font-weight: 700;
}
.store-page .cart-sheet-overlay .cart-sheet .sheet-body .order-summary .summary-row.highlight {
  color: #E96B3D;
}
.store-page .cart-sheet-overlay .cart-sheet .sheet-body .order-summary .summary-row.highlight .label {
  font-size: 0.875rem;
}
.store-page .cart-sheet-overlay .cart-sheet .sheet-body .btn-order-wrapper {
  padding: 0 20px 0;
}
.store-page .cart-sheet-overlay .cart-sheet .sheet-body .btn-order-wrapper .btn-order {
  width: 100%;
  background: #E96B3D;
  background: linear-gradient(90deg, #E96B3D 0%, #F9A15D 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  padding: 16px;
  font-size: 1.0625rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(233, 107, 61, 0.3);
}
.store-page .cart-sheet-overlay .cart-sheet .sheet-body .btn-order-wrapper .btn-order .total-amount {
  margin-right: 4px;
}

@keyframes slideInUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
.result-card {
  background-color: #FFFFFF;
  border: 1px solid #F6F2EF;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 4px 10px -3px rgba(143, 121, 111, 0.1);
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.result-card .card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #3A332F;
  margin: 0;
  line-height: 1.4;
}
.result-card .card-status {
  font-size: 1rem;
  font-weight: 700;
  color: #E96B3D;
  margin: 0;
  line-height: 1.4;
}
.result-card .card-desc {
  font-size: 0.875rem;
  color: #8E8E8E;
  margin: 4px 0 10px;
  line-height: 1.5;
}
.result-card .btn-share-link {
  width: 100%;
  background-color: #E96B3D;
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  padding: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity 0.2s;
}
.result-card .btn-share-link:active {
  opacity: 0.9;
}
.result-card .btn-share-link img {
  width: 18px;
  height: 18px;
}

.payment-page {
  position: relative;
  background-color: #F6F2EF;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}
.payment-page .page-header {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  width: 100%;
  max-width: 400px;
  height: 60px;
  background-color: var(--03, #FBFAF8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  border-bottom: 1px solid #F6F2EF;
  margin: 0 auto;
  flex-shrink: 0;
}
.payment-page .page-header .btn-back {
  position: absolute;
  left: 20px;
  background: none;
  border: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.payment-page .page-header .btn-back img {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  aspect-ratio: 1/1;
}
.payment-page .page-header h1 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #3A332F;
}
.payment-page .payment-scroll-area {
  flex: 1;
  overflow-y: auto;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding-bottom: 20px;
  /* Reset margins for sections inside scroll area */
}
.payment-page .payment-scroll-area .section {
  margin: 0.3125rem 0.9375rem;
}
.payment-page .section {
  background-color: #FFFFFF;
  padding: 1.25rem;
  border-radius: 1.25rem;
  border: 1px solid var(--04, #F6F2EF);
  background: var(--01, #FFF);
  /* dr_shadow_b */
  box-shadow: 0 4px 10px -3px rgba(143, 121, 111, 0.1);
  gap: 0.625rem;
}
.payment-page .section .section-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #3A332F;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.payment-page .section .section-title .action-link {
  font-size: 0.875rem;
  font-weight: 400;
  color: #8F796F;
  text-decoration: underline;
  cursor: pointer;
}
.payment-page .section.discount-section .section-title {
  justify-content: flex-start;
  gap: 0.75rem;
}
.payment-page .section.discount-section .section-title .icon {
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  aspect-ratio: 1/1;
}
.payment-page .section.discount-section .section-title .label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.payment-page .section.discount-section .section-title .label .title {
  color: var(--08, #3A332F);
  /* 06_B */
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 0.875rem */
}
.payment-page .section.discount-section .section-title .label .unit {
  color: var(--07, #8F796F);
  /* 08_M */
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  /* 0.6875rem */
}
.payment-page .section.noti-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.payment-page .section.noti-section .icon {
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
}
.payment-page .section.noti-section .noti-label {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.payment-page .section.noti-section .noti-label .title {
  color: var(--08, #3A332F);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 100%;
}
.payment-page .section.noti-section .noti-label .label {
  color: var(--07, #8F796F);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 100%;
}
.payment-page .section.noti-section .noti-point .val {
  color: var(--14, #E96B3D);
  text-align: right;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 100%;
}
.payment-page .order-info-section {
  flex-shrink: 0;
  margin: 0.3125rem 0.9375rem 0;
  z-index: 99;
  transition: all 0.3s ease;
}
.payment-page .order-info-section.collapsed .type-selector {
  margin-bottom: 0px;
}
.payment-page .order-info-section.collapsed .type-selector .label,
.payment-page .order-info-section.collapsed .type-selector .btn-group {
  display: none !important;
}
.payment-page .order-info-section.collapsed .type-selector .type-summary {
  display: block !important;
}
.payment-page .order-info-section.collapsed .type-selector .visit-time-selector {
  display: none !important;
}
.payment-page .order-info-section.collapsed .address-input-area,
.payment-page .order-info-section.collapsed .table-input-area {
  margin-top: 0.5rem;
}
.payment-page .order-info-section.collapsed .address-input-area .label,
.payment-page .order-info-section.collapsed .table-input-area .label {
  display: none;
}
.payment-page .order-info-section.collapsed .address-input-area .input-wrapper,
.payment-page .order-info-section.collapsed .address-input-area .daum-postcode-wrap,
.payment-page .order-info-section.collapsed .table-input-area .input-wrapper,
.payment-page .order-info-section.collapsed .table-input-area .daum-postcode-wrap {
  display: none !important;
}
.payment-page .order-info-section.collapsed .address-input-area .info-summary,
.payment-page .order-info-section.collapsed .table-input-area .info-summary {
  display: block !important;
}
.payment-page .order-info-section .type-selector {
  display: flex;
  background-color: #F6F2EF;
  border-radius: 8px;
  padding: 4px;
  margin-bottom: 24px;
}
.payment-page .order-info-section .type-selector .type-btn {
  flex: 1;
  border: none;
  background: none;
  padding: 10px 0;
  font-size: 0.9375rem;
  color: #8F796F;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 500;
}
.payment-page .order-info-section .type-selector .type-btn .icon {
  filter: invert(53%) sepia(16%) saturate(464%) hue-rotate(336deg) brightness(94%) contrast(85%);
  transition: filter 0.2s;
}
.payment-page .order-info-section .type-selector .type-btn.selected {
  background-color: #FFFFFF;
  color: #3A332F;
  font-weight: 700;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.payment-page .order-info-section .type-selector .type-btn.selected .icon {
  filter: invert(51%) sepia(99%) saturate(830%) hue-rotate(336deg) brightness(94%) contrast(95%);
}
.payment-page .order-info-section .type-selector .visit-time-selector {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.payment-page .order-info-section .type-selector .visit-time-selector .label {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #3A332F;
}
.payment-page .order-info-section .type-selector .visit-time-selector .select-wrapper {
  position: relative;
  width: 100%;
}
.payment-page .order-info-section .type-selector .visit-time-selector .select-wrapper::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%238F796F' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E") no-repeat center center;
  background-size: contain;
  pointer-events: none;
}
.payment-page .order-info-section .type-selector .visit-time-selector .select-wrapper .custom-select {
  width: 100%;
  background-color: #FFF;
  border: 1px solid #EAE0D9;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 0.9375rem;
  color: #3A332F;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.2s;
}
.payment-page .order-info-section .type-selector .visit-time-selector .select-wrapper .custom-select:active {
  background-color: #FDF9F8;
  border-color: #E96B3D;
}
.payment-page .order-info-section .type-selector .visit-time-selector .visit-time-desc {
  margin: 8px 0 0;
  font-size: 0.875rem;
  color: #E96B3D;
  font-weight: 600;
}
.payment-page .order-info-section .type-selector .closed-warning {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #FFF2F0;
  border: 1px solid #FFCCC7;
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 16px;
}
.payment-page .order-info-section .type-selector .closed-warning .icon {
  width: 18px;
  height: 18px;
  filter: invert(27%) sepia(91%) saturate(2352%) hue-rotate(346deg) brightness(80%) contrast(101%);
}
.payment-page .order-info-section .type-selector .closed-warning span {
  font-size: 0.875rem;
  color: #CF1322;
  font-weight: 500;
  line-height: 1.4;
}
.payment-page .order-info-section .type-selector .type-summary {
  cursor: pointer;
  width: 100%;
}
.payment-page .order-info-section .type-selector .type-summary .text {
  font-size: 1.125rem;
  font-weight: 700;
  color: #3A332F;
  display: block;
  margin-bottom: 4px;
}
.payment-page .order-info-section .type-selector .type-summary .sub-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: #8F796F;
  line-height: 1.4;
}
.payment-page .order-info-section .address-input-area,
.payment-page .order-info-section .table-input-area {
  margin-top: 1rem;
}
.payment-page .order-info-section .address-input-area .info-summary,
.payment-page .order-info-section .table-input-area .info-summary {
  cursor: pointer;
  padding: 10px 0;
}
.payment-page .order-info-section .address-input-area .info-summary .text,
.payment-page .order-info-section .table-input-area .info-summary .text {
  font-size: 0.9375rem;
  font-weight: 500;
  margin: 0;
}
.payment-page .order-info-section .address-input-area .info-summary .text.valid,
.payment-page .order-info-section .table-input-area .info-summary .text.valid {
  color: #3A332F;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.payment-page .order-info-section .address-input-area .info-summary .text.invalid,
.payment-page .order-info-section .table-input-area .info-summary .text.invalid {
  color: #E65C00;
  font-weight: 700;
}
.payment-page .order-info-section .address-input-area .label,
.payment-page .order-info-section .table-input-area .label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1rem;
  font-weight: 700;
  color: #3A332F;
  margin-bottom: 8px;
}
.payment-page .order-info-section .address-input-area .label .icon,
.payment-page .order-info-section .table-input-area .label .icon {
  width: 16px;
  height: 16px;
}
.payment-page .order-info-section .address-input-area .input-wrapper,
.payment-page .order-info-section .table-input-area .input-wrapper {
  margin-bottom: 0.325rem;
}
.payment-page .order-info-section .address-input-area .input-wrapper.search-row,
.payment-page .order-info-section .table-input-area .input-wrapper.search-row {
  position: relative;
  display: flex;
}
.payment-page .order-info-section .address-input-area .input-wrapper.search-row input,
.payment-page .order-info-section .table-input-area .input-wrapper.search-row input {
  flex: 1;
  padding-right: 44px;
  cursor: pointer;
}
.payment-page .order-info-section .address-input-area .input-wrapper.search-row .btn-search,
.payment-page .order-info-section .table-input-area .input-wrapper.search-row .btn-search {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%233A332F' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z'%3E%3C/path%3E%3C/svg%3E") no-repeat center center;
  background-size: contain;
  border: none;
  cursor: pointer;
  font-size: 0;
  padding: 0;
  z-index: 1;
}
.payment-page .order-info-section .address-input-area .input-wrapper:last-child,
.payment-page .order-info-section .table-input-area .input-wrapper:last-child {
  margin-bottom: 0;
}
.payment-page .order-info-section .address-input-area .input-wrapper input,
.payment-page .order-info-section .table-input-area .input-wrapper input {
  width: 100%;
  border: 1px solid #EAE0D9;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.9375rem;
  color: #3A332F;
  outline: none;
}
.payment-page .order-info-section .address-input-area .input-wrapper input:focus,
.payment-page .order-info-section .table-input-area .input-wrapper input:focus {
  border-color: #E96B3D;
}
.payment-page .order-info-section .address-input-area .input-wrapper input::placeholder,
.payment-page .order-info-section .table-input-area .input-wrapper input::placeholder {
  color: #C9B2A8;
}
.payment-page .order-info-section .address-input-area .daum-postcode-wrap,
.payment-page .order-info-section .table-input-area .daum-postcode-wrap {
  display: none;
  border: 1px solid #ddd;
  width: 100%;
  height: 450px;
  margin: 10px 0;
  position: relative;
}
.payment-page .order-info-section .address-input-area .daum-postcode-wrap .btn-fold-wrap,
.payment-page .order-info-section .table-input-area .daum-postcode-wrap .btn-fold-wrap {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: -1px;
  z-index: 1;
}
.payment-page .order-items-section .item-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.payment-page .order-items-section .item-row:last-child {
  margin-bottom: 0;
}
.payment-page .order-items-section .item-row .item-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.payment-page .order-items-section .item-row .item-details .name {
  color: var(--07, #8F796F);
  /* 07_B */
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 0.75rem */
}
.payment-page .order-items-section .item-row .item-details .options {
  color: var(--07, #8F796F);
  /* 09_M */
  font-size: 0.625rem;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  /* 0.625rem */
}
.payment-page .order-items-section .item-row .price {
  color: var(--07, #8F796F);
  text-align: right;
  /* 07_B */
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 0.75rem */
}
.payment-page .order-items-section .toggle-more {
  width: 100%;
  padding: 12px;
  background-color: #F6F2EF;
  border: none;
  border-radius: 8px;
  color: #8F796F;
  font-size: 0.875rem;
  margin-top: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.payment-page .order-items-section .fee-details {
  display: none;
  padding: 15px 0 0;
  border-top: 1px solid #F6F2EF;
  margin-top: 15px;
}
.payment-page .order-items-section .fee-details .item-row .item-details .name {
  color: #8F796F;
  font-size: 0.875rem;
}
.payment-page .order-items-section .fee-details .item-row .price {
  color: #8F796F;
  font-size: 0.875rem;
}
.payment-page .order-items-section .item-summary {
  background-color: transparent;
  border-top: 1px solid #F6F2EF;
  border-radius: 0;
  padding: 24px 0 0;
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.payment-page .order-items-section .item-summary .summary-title {
  font-size: 1rem;
  color: var(--07, #8F796F);
  font-weight: 700;
}
.payment-page .order-items-section .item-summary .summary-price {
  font-size: 1.25rem;
  color: var(--08, #3A332F);
  font-weight: 700;
}

.input-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 16px;
}
.input-group:last-child {
  margin-bottom: 0;
}
.input-group .label {
  font-size: 1rem;
  font-weight: 700;
  color: #3A332F;
  margin-bottom: 8px;
}
.input-group .input-area {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.input-group .input-area input {
  display: flex;
  height: 3.125rem;
  padding: 0.9375rem;
  align-items: center;
  width: 100%;
  border-radius: 0.625rem;
  border: 1px solid var(--04, #F6F2EF);
  background: var(--01, #FFF);
  text-align: left;
  font-size: 1rem;
  color: #3A332F;
  outline: none;
}
.input-group .input-area input::placeholder {
  color: #C9B2A8;
}
.input-group .input-area input:disabled {
  background-color: #F8F9FA;
  border-color: #EEE;
  color: #C9B2A8;
  cursor: not-allowed;
}
.input-group .input-area:has(input:disabled) .label {
  color: #C9B2A8 !important;
  cursor: not-allowed !important;
  text-decoration: none !important;
}
.input-group .input-area .unit {
  font-size: 0.9375rem;
  color: #3A332F;
  white-space: nowrap;
}
.input-group .input-area .btn-apply {
  width: 24px;
  height: 24px;
  background: url("../assets/check_circle.svg") no-repeat center center;
  background-size: contain;
  border: none;
  cursor: pointer;
  font-size: 0;
  padding: 0;
  flex-shrink: 0;
}
.input-group .input-area .btn-apply:disabled {
  opacity: 0.3;
  filter: grayscale(1);
  cursor: not-allowed;
}
.input-group .input-area .label {
  font-size: 0.8125rem;
  color: #8F796F;
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  height: 24px;
}

.holding-points {
  font-size: 0.8125rem;
  color: #8F796F;
  text-align: right;
  margin-top: -8px;
  margin-bottom: 16px;
}

.payment-method-section .method-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.payment-method-section .method-grid .method-item {
  border: 1px solid #EAE0D9;
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  background-color: #FFFFFF;
  transition: all 0.2s;
}
.payment-method-section .method-grid .method-item.selected {
  border-color: #E96B3D;
  background-color: rgba(233, 107, 61, 0.05);
}
.payment-method-section .method-grid .method-item.selected .method-name {
  color: #E96B3D;
  font-weight: 700;
}
.payment-method-section .method-grid .method-item .icon {
  width: 2.75rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.payment-method-section .method-grid .method-item .icon img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}
.payment-method-section .method-grid .method-item .method-name {
  font-size: 1rem;
  font-weight: 500;
  color: #3A332F;
}

.amount-section .amount-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #8F796F;
}
.amount-section .amount-row.final {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #F6F2EF;
  color: #3A332F;
  font-weight: 700;
  font-size: 1.25rem;
}
.amount-section .amount-row.final .curr {
  font-size: 1.125rem;
}
.amount-section .amount-row.final .val {
  color: #E96B3D;
}

.bottom-bar {
  position: relative;
  bottom: auto;
  left: auto;
  transform: none;
  width: 100%;
  max-width: 400px;
  background-color: #FFFFFF;
  padding: 20px;
  border-top: 1px solid #F6F2EF;
  z-index: 100;
  margin: 0 auto;
  flex-shrink: 0;
}
.bottom-bar .final-amount {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}
.bottom-bar .final-amount .label {
  color: var(--07, #8F796F);
  /* 07_M */
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  /* 0.75rem */
}
.bottom-bar .final-amount .val {
  color: var(--08, #3A332F);
  text-align: right;
  /* 05_B */
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 1rem */
}
.bottom-bar .btn-pay {
  width: 100%;
  background: linear-gradient(90deg, #E96B3D 0%, #F9A15D 100%);
  color: #FFFFFF;
  border: none;
  padding: 16px;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(233, 107, 61, 0.3);
}
.bottom-bar .btn-pay:disabled {
  background: #D9D2CF;
  color: #FFFFFF;
  cursor: not-allowed;
  box-shadow: none;
}

.payment-page .order-info-section .type-selector {
  display: block !important;
  background: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}
.payment-page .order-info-section .type-selector > .label {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #3A332F;
  margin-bottom: 12px;
}
.payment-page .order-info-section .type-selector .btn-group {
  display: flex;
  border-radius: 8px;
  padding: 4px;
  gap: 4px;
}
.payment-page .order-info-section .type-selector .btn-group .type-btn {
  display: flex;
  padding: 1.25rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.9375rem;
  flex: 1 0 0;
  border-radius: 0.9375rem;
  border: 1px solid var(--05, #DAC7BE);
  background: var(--01, #FFF);
  color: #8F796F;
  font-weight: 500;
}
.payment-page .order-info-section .type-selector .btn-group .type-btn .icon {
  height: 20px;
  width: auto;
  display: block;
  filter: invert(53%) sepia(16%) saturate(464%) hue-rotate(336deg) brightness(94%) contrast(85%);
  transition: filter 0.2s;
}
.payment-page .order-info-section .type-selector .btn-group .type-btn span {
  line-height: 1;
}
.payment-page .order-info-section .type-selector .btn-group .type-btn.selected {
  border-radius: 0.9375rem;
  border: 1px solid var(--14, #E96B3D);
  background: var(--12, #FFF9F7);
  color: var(--14, #E96B3D);
  /* dr_shadow_o */
  box-shadow: 0 6px 10px -3px rgba(255, 105, 0, 0.1);
}
.payment-page .order-info-section .type-selector .btn-group .type-btn.selected .icon {
  filter: invert(51%) sepia(99%) saturate(830%) hue-rotate(336deg) brightness(94%) contrast(95%);
}

.payment-page .payment-method-section .method-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dim {
  display: none;
  position: fixed;
  inset: 0px;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.dim.active {
  display: block;
}

.loading-container {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 9001;
  transform: translate(-50%, -50%);
  width: calc(100% - 40px);
  max-width: 320px;
  padding: 40px 20px;
  border-radius: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.loading-container .loader-logo {
  width: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 1.5s infinite ease-in-out;
}
.loading-container .loader-logo img {
  width: 100%;
  height: auto;
}
.loading-container p {
  color: #3A332F;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(0.95);
    opacity: 0.8;
  }
}
#mask {
  position: absolute;
  z-index: 9000;
  background-color: #000;
  display: none;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.window {
  display: none;
  position: fixed;
  top: 0%;
  width: 100%;
  height: 100%;
  z-index: 10000;
}
.window .cont {
  width: 100%;
  height: 100%;
}
.window #pay_frame {
  width: 100%;
}

.bottom-sheet-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.bottom-sheet-overlay.active {
  display: block;
  opacity: 1;
}

.bottom-sheet {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  width: 100%;
  max-width: 400px;
  background: #fff;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  z-index: 1001;
  transition: transform 0.3s ease;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
}
.bottom-sheet.active {
  transform: translateX(-50%) translateY(0);
}
.bottom-sheet .sheet-header {
  padding: 20px;
  text-align: center;
  position: relative;
  border-bottom: 1px solid #F6F2EF;
}
.bottom-sheet .sheet-header h2 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #3A332F;
  margin: 0;
}
.bottom-sheet .sheet-header .btn-close {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bottom-sheet .sheet-header .btn-close img {
  width: 1.5rem;
  height: 1.5rem;
}
.bottom-sheet .sheet-body {
  max-height: 60vh;
  overflow-y: auto;
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
}
.bottom-sheet .sheet-body .list-title {
  padding: 12px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #8F796F;
  background-color: #F8F4F2;
}
.bottom-sheet .sheet-body .card-list {
  list-style: none;
  padding: 20px;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.bottom-sheet .sheet-body .card-list.user-card-list .btn-unselect {
  display: flex !important;
}
.bottom-sheet .sheet-body .card-list .card-item {
  padding: 15px 10px;
  border: 1px solid #F6F2EF;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  transition: background-color 0.2s;
  text-align: center;
}
.bottom-sheet .sheet-body .card-list .card-item:active {
  background-color: #FDF9F8;
}
.bottom-sheet .sheet-body .card-list .card-item.selected {
  background-color: #FFF5F1;
}
.bottom-sheet .sheet-body .card-list .card-item.selected .card-name {
  color: #E65C00;
  font-weight: 700;
}
.bottom-sheet .sheet-body .card-list .card-item.selected .btn-unselect {
  display: flex;
}
.bottom-sheet .sheet-body .card-list .card-item .card-name {
  font-size: 1rem;
  color: #3A332F;
  font-weight: 500;
}
.bottom-sheet .sheet-body .card-list .card-item .btn-unselect {
  display: none;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
}
.bottom-sheet .sheet-body .card-list .card-item .btn-unselect img {
  width: 14px;
  height: 14px;
  opacity: 0.4;
}

/* Scroll Indicator - Moved out of nesting for reliability */
.scroll-indicator {
  position: fixed;
  bottom: 160px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: rgba(58, 51, 47, 0.9);
  color: #FFFFFF !important;
  padding: 10px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  z-index: 9999;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
}
.scroll-indicator.visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.scroll-indicator span {
  white-space: nowrap;
  line-height: 1;
}
.scroll-indicator img {
  width: 12px;
  height: 12px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s;
}
.scroll-indicator:active {
  transform: translateX(-50%) scale(0.95);
  background-color: #3A332F;
}

#manual_pay_msg {
  display: none;
  text-align: center;
  position: fixed;
  top: 40%;
  left: 0;
  width: 100%;
  z-index: 10002;
  color: #333;
}
#manual_pay_msg p {
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 16px;
}
#manual_pay_msg p span {
  font-size: 14px;
  font-weight: normal;
  color: #666;
}
#manual_pay_msg button {
  background-color: #333;
  color: #fff;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
}

body.payment-loading {
  background-color: #F6F2EF;
}

.payment-complete-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px 40px;
  background-color: #FFFFFF;
  min-height: 100vh;
  background: var(--03, #FBFAF8);
}
.payment-complete-page .status-section {
  text-align: center;
  margin-bottom: 40px;
}
.payment-complete-page .status-section .icon-wrap .check-icon {
  width: 60px;
  height: auto;
}
.payment-complete-page .status-section .title {
  color: #3A332F;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.payment-complete-page .status-section .subtitle {
  color: #827E7A;
  font-size: 0.9375rem;
  font-weight: 400;
}
.payment-complete-page .order-details-card {
  width: 100%;
  border-radius: 1.25rem;
  padding: 24px;
  margin-bottom: 16px;
  border: 1px solid var(--04, #F6F2EF);
  background: var(--01, #FFF);
  /* dr_shadow_b */
  box-shadow: 0 4px 10px -3px rgba(143, 121, 111, 0.1);
}
.payment-complete-page .order-details-card .detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.payment-complete-page .order-details-card .detail-row:last-child {
  margin-bottom: 0;
}
.payment-complete-page .order-details-card .detail-row .label {
  color: #8F796F;
  font-size: 0.8125rem;
  font-weight: 500;
}
.payment-complete-page .order-details-card .detail-row .val {
  color: #3A332F;
  font-size: 0.8125rem;
  font-weight: 700;
}
.payment-complete-page .order-details-card .detail-row.highlight .label {
  color: #E96B3D;
}
.payment-complete-page .order-details-card .detail-row.highlight .val {
  color: #E96B3D;
}
.payment-complete-page .order-details-card .detail-row.total .label {
  font-size: 1rem;
  color: var(--07, #8F796F);
  font-weight: 700;
}
.payment-complete-page .order-details-card .detail-row.total .val {
  font-size: 1.125rem;
  color: #3A332F;
  font-weight: 700;
}
.payment-complete-page .order-details-card .divider {
  height: 1px;
  background-color: #EAE0D9;
  margin: 16px 0;
}
.payment-complete-page .point-reward-card {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #FFFFFF;
  border: 1px solid #F6F2EF;
  border-radius: 1.25rem;
  padding: 20px;
  box-shadow: 0 4px 10px -3px rgba(143, 121, 111, 0.1);
  margin-bottom: 40px;
}
.payment-complete-page .point-reward-card .point-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.payment-complete-page .point-reward-card .point-info .point-icon {
  width: 2.75rem;
  height: 2.75rem;
}
.payment-complete-page .point-reward-card .point-info .text-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.payment-complete-page .point-reward-card .point-info .text-group .title {
  color: #3A332F;
  font-size: 0.875rem;
  font-weight: 700;
}
.payment-complete-page .point-reward-card .point-info .text-group .desc {
  color: #8F796F;
  font-size: 0.6875rem;
  font-weight: 500;
}
.payment-complete-page .point-reward-card .point-amount .val {
  color: #E96B3D;
  font-size: 1rem;
  font-weight: 700;
}
.payment-complete-page .button-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}
.payment-complete-page .button-group button {
  width: 100%;
  height: 56px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.payment-complete-page .button-group .btn-outline {
  background: var(--01, #FFF);
  border: 1px solid var(--05, #DAC7BE);
  color: var(--07, #8F796F);
}
.payment-complete-page .button-group .btn-outline:active {
  background-color: #F8F4F1;
}
.payment-complete-page .button-group .btn-primary {
  background: linear-gradient(90deg, #E96B3D 0%, #F9A15D 100%);
  border: none;
  color: #FFFFFF;
  box-shadow: 0 4px 10px rgba(233, 107, 61, 0.3);
}
.payment-complete-page .button-group .btn-primary:active {
  opacity: 0.9;
}

.bg-gray {
  background-color: var(--03, #FBFAF8);
}

.order-list-page .header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding: 0 20px;
  background-color: var(--03, #FBFAF8);
}
.order-list-page .header .btn-back {
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.order-list-page .header .btn-back img {
  width: 24px;
  height: 24px;
}
.order-list-page .header .title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--08, #3A332F);
  margin: 0;
  letter-spacing: -0.45px;
}
.order-list-page .header .header-link {
  margin-left: auto;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--07, #8F796F);
  text-decoration: none;
}

.order-tabs {
  display: flex;
  padding: 0 20px;
  background-color: var(--03, #FBFAF8);
  align-items: center;
  border-bottom: 1px solid var(--04, #F6F2EF);
  gap: 20px;
}
.order-tabs .tab-item {
  height: 48px;
  border: none;
  background: none;
  font-size: 1rem;
  font-weight: 500;
  color: var(--07, #8F796F);
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.order-tabs .tab-item.active {
  color: var(--08, #3A332F);
  font-weight: 700;
}
.order-tabs .tab-item.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--14, #E96B3D);
}

.order-search-notice {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 20px 4px;
  font-size: 0.75rem;
  color: var(--07, #8F796F);
  letter-spacing: -0.3px;
}
.order-search-notice .icon {
  width: 14px;
  height: 14px;
  opacity: 0.8;
}

.date-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background-color: var(--03, #FBFAF8);
}
.date-filter-bar .current-filter {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--08, #3A332F);
}
.date-filter-bar .btn-filter-change {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.date-filter-bar .btn-filter-change span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--07, #8F796F);
  text-decoration: underline;
}

.order-list-content {
  padding: 20px 20px 100px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.order-card {
  background-color: var(--01, #FFF);
  border-radius: 1.25rem;
  padding: 20px;
  border: 1px solid var(--04, #F6F2EF);
  box-shadow: 0 4px 10px -3px rgba(143, 121, 111, 0.1);
  cursor: pointer;
}
.order-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}
.order-card .card-header .store-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.order-card .card-header .store-info .store-logo {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  background-color: lightgray;
  box-shadow: 0 6px 8px 0 rgba(140, 123, 115, 0.1);
  overflow: hidden;
}
.order-card .card-header .store-info .store-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.order-card .card-header .store-info .text-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.order-card .card-header .store-info .text-group .name-status {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.order-card .card-header .store-info .text-group .store-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--08, #3A332F);
}
.order-card .card-header .store-info .text-group .order-status {
  display: flex;
  padding: 5px 8px;
  justify-content: center;
  align-items: center;
  gap: 2px;
  border-radius: 99px;
  background: var(--04, #F6F2EF);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--07, #8F796F);
}
.order-card .card-header .store-info .text-group .order-status.processing {
  background: var(--12, #FFF9F7);
  color: var(--14, #E96B3D);
}
.order-card .card-header .store-info .text-group .menu-summary {
  color: var(--07, #8F796F);
  /* 08_M */
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  /* 0.6875rem */
}
.order-card .card-header .btn-detail {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.order-card .card-header .btn-detail img {
  width: 18px;
  height: 18px;
}
.order-card .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--04, #F6F2EF);
  gap: 10px;
}
.order-card .card-footer .order-date {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.order-card .card-footer .order-date .icon {
  width: 14px;
  height: 14px;
}
.order-card .card-footer .order-date span {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--07, #8F796F);
  white-space: nowrap;
}
.order-card .card-footer .total-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--08, #3A332F);
  flex: 1;
}
.order-card .card-footer .total-price .price-unit {
  white-space: nowrap;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.order-card .card-footer .total-price .val {
  font-size: 1rem;
  font-weight: 700;
}
.order-card .card-footer .total-price .point {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--14, #E96B3D);
}

/* Order Detail Popup */
.popup-wrapper {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 400px;
  height: 100%;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.popup-wrapper.active {
  opacity: 1;
  visibility: visible;
}
.popup-wrapper.active .popup-container {
  transform: translateY(0);
}
.popup-wrapper .popup-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.popup-wrapper .popup-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #FBFAF8;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  max-height: 90vh;
  overflow-y: auto;
}
.popup-wrapper .popup-handle-bar {
  width: 36px;
  height: 4px;
  background-color: #E0E0E0;
  border-radius: 2px;
  margin: 8px auto 0;
}
.popup-wrapper .popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9375rem 20px;
}
.popup-wrapper .popup-header .title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111;
  margin: 0;
}
.popup-wrapper .popup-header .btn-close {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-wrapper .popup-header .btn-close img {
  width: 100%;
  height: 100%;
}
.popup-wrapper .popup-body {
  padding: 0 20px 40px;
}
.popup-wrapper .store-summary-section {
  margin-bottom: 24px;
}
.popup-wrapper .store-summary-section .store-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.popup-wrapper .store-summary-section .store-row .store-thumb {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
}
.popup-wrapper .store-summary-section .store-row .store-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.popup-wrapper .store-summary-section .store-row .store-text {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
}
.popup-wrapper .store-summary-section .store-row .store-text .name-status {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.popup-wrapper .store-summary-section .store-row .store-text .name-status .name {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
}
.popup-wrapper .store-summary-section .store-row .store-text .name-status .status {
  font-size: 0.875rem;
  font-weight: 600;
}
.popup-wrapper .store-summary-section .store-row .store-text .name-status .status.processing {
  color: #E96B3D;
}
.popup-wrapper .store-summary-section .store-row .store-text .order-no {
  color: var(--07, #8F796F);
  /* 07_M */
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  /* 0.75rem */
}
.popup-wrapper .order-info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.popup-wrapper .order-info-list .info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
}
.popup-wrapper .order-info-list .info-item .icon {
  width: 16px;
  height: 16px;
  filter: invert(54%) sepia(4%) saturate(1738%) hue-rotate(334deg) brightness(90%) contrast(90%);
}
.popup-wrapper .order-info-list .info-item .label {
  color: var(--07, #8F796F);
  /* 07_M */
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  /* 0.75rem */
}
.popup-wrapper .order-info-list .info-item .value {
  color: #333;
  font-weight: 500;
  flex: 1;
  text-align: right;
}
.popup-wrapper .section-divider {
  height: 1px;
  background-color: #EEE;
  margin: 20px 0;
}
.popup-wrapper .menu-list-section .sub-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 12px 0;
}
.popup-wrapper .menu-list-section .menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.popup-wrapper .menu-list-section .menu-list .menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}
.popup-wrapper .menu-list-section .menu-list .menu-item:last-child {
  margin-bottom: 0;
}
.popup-wrapper .menu-list-section .menu-list .menu-item .left-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  padding-right: 12px;
}
.popup-wrapper .menu-list-section .menu-list .menu-item .left-group .name {
  color: var(--07, #8F796F);
  /* 07_B */
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 0.75rem */
}
.popup-wrapper .menu-list-section .menu-list .menu-item .left-group .count {
  color: var(--07, #8F796F);
  /* 09_M */
  font-size: 0.625rem;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  /* 0.625rem */
}
.popup-wrapper .menu-list-section .menu-list .menu-item .left-group .options {
  color: var(--07, #8F796F);
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 2px;
}
.popup-wrapper .menu-list-section .menu-list .menu-item .right-group {
  flex-shrink: 0;
}
.popup-wrapper .menu-list-section .menu-list .menu-item .right-group .price {
  color: var(--07, #8F796F);
  text-align: right;
  /* 07_B */
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 0.75rem */
}
.popup-wrapper .menu-list-section .menu-list .menu-item.center-content {
  justify-content: center;
}
.popup-wrapper .menu-list-section .menu-list .empty-list {
  padding: 20px;
  text-align: center;
  color: #666;
}
.popup-wrapper .payment-detail-section {
  padding: 0 0 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.popup-wrapper .payment-detail-section .detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.popup-wrapper .payment-detail-section .detail-row .label {
  color: var(--07, #8F796F);
  font-size: 0.8125rem;
  font-weight: 500;
}
.popup-wrapper .payment-detail-section .detail-row .value {
  color: #333;
  font-size: 0.8125rem;
  font-weight: 500;
}
.popup-wrapper .total-payment-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid #F6F2EF;
}
.popup-wrapper .total-payment-section .label {
  color: var(--07, #8F796F);
  /* 06_B */
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 0.875rem */
}
.popup-wrapper .total-payment-section .value {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111;
}
.popup-wrapper .btn-cancel-order {
  display: none;
  width: 100%;
  margin-top: 24px;
  padding: 16px;
  background-color: #FFF;
  border: 1px solid #E96B3D;
  border-radius: 12px;
  color: #E96B3D;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.loading-container {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 400px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #3A332F;
  z-index: 9999;
  border-radius: inherit;
}
.loading-container .loader-logo {
  width: 80px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulseLogo 1.5s infinite ease-in-out;
}
.loading-container .loader-logo img {
  width: 100%;
  height: auto;
}
.loading-container p {
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}

@keyframes pulseLogo {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(0.95);
    opacity: 0.8;
  }
}
.order-view-page {
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  font-family: "Pretendard", sans-serif;
}
.order-view-page .header {
  padding: 24px 20px 20px;
  background: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.order-view-page .header .title {
  position: static;
  display: block;
  width: 100%;
  font-size: 20px;
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.2;
  margin: 0;
  transform: none;
}
.order-view-page .header .order-number {
  color: var(--07, #8F796F);
  font-family: Pretendard;
  font-size: 0.6875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  /* 0.6875rem */
}
.order-view-page .status-card {
  background: white;
  padding: 16px;
  border-radius: 0.9375rem;
  margin: 0 20px;
}
.order-view-page .status-card .status-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  gap: 8px;
}
.order-view-page .status-card .status-header .status-time {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: #8F796F;
  font-weight: 500;
  flex-shrink: 0;
}
.order-view-page .status-card .status-header .status-time .icon {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(54%) sepia(4%) saturate(1738%) hue-rotate(334deg) brightness(90%) contrast(90%);
}
.order-view-page .status-card .status-header .status-refresh-area {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.order-view-page .status-card .status-header .status-refresh-area .refresh-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #1A1A1A;
  font-weight: 600;
  cursor: pointer;
}
.order-view-page .status-card .status-header .status-refresh-area .refresh-toggle input[type=checkbox] {
  appearance: none;
  width: 20px;
  height: 20px;
  background: #E5DDD9;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}
.order-view-page .status-card .status-header .status-refresh-area .refresh-toggle input[type=checkbox]::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 4px;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.order-view-page .status-card .status-header .status-refresh-area .refresh-toggle input[type=checkbox]:checked {
  background: #E96B3D;
}
.order-view-page .status-card .status-header .status-refresh-area .btn-refresh {
  width: 38px;
  height: 38px;
  background: #E96B3D;
  border: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}
.order-view-page .status-card .status-header .status-refresh-area .btn-refresh img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}
.order-view-page .status-card .status-header .status-refresh-area .btn-refresh:active {
  transform: scale(0.95);
}
.order-view-page .current-status-card {
  background: white;
  padding: 24px 20px;
  margin: 0 20px;
  border-radius: 0.9375rem;
}
.order-view-page .current-status-card .status-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.order-view-page .current-status-card .status-title-row .status-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--08, #3A332F);
}
.order-view-page .current-status-card .status-title-row .status-badge {
  padding: 4px 10px;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 100%;
  background: #FFF8E7;
  color: #E96B3D;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.order-view-page .current-status-card .status-title-row .status-time-info {
  font-size: 0.75rem;
  color: var(--07, #8F796F);
  margin-left: auto;
}
.order-view-page .current-status-card .status-title-row .status-time-info strong {
  color: var(--08, #3A332F);
  font-weight: 700;
}
.order-view-page .current-status-card .status-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  padding: 0 10px;
}
.order-view-page .current-status-card .status-steps::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 30px;
  right: 30px;
  height: 2px;
  background: #F5F5F5;
  z-index: 0;
}
.order-view-page .current-status-card .status-steps .step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
  z-index: 1;
  position: relative;
}
.order-view-page .current-status-card .status-steps .step-item .step-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #F8F8F8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  position: relative;
  z-index: 2;
}
.order-view-page .current-status-card .status-steps .step-item .step-icon img {
  width: 20px;
  height: 20px;
  opacity: 0.2;
}
.order-view-page .current-status-card .status-steps .step-item .step-label {
  font-size: 11px;
  color: #B2B2B2;
  text-align: center;
  white-space: nowrap;
  font-weight: 500;
}
.order-view-page .current-status-card .status-steps .step-item::after {
  content: "";
  position: absolute;
  top: 22px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: transparent;
  z-index: 1;
}
.order-view-page .current-status-card .status-steps .step-item.completed::after {
  background: #E96B3D;
}
.order-view-page .current-status-card .status-steps .step-item:last-child::after {
  display: none;
}
.order-view-page .current-status-card .status-steps .step-item.completed .step-icon {
  background: #FFF0E9;
}
.order-view-page .current-status-card .status-steps .step-item.completed .step-icon img {
  opacity: 1;
}
.order-view-page .current-status-card .status-steps .step-item.completed .step-label {
  color: #E96B3D;
  opacity: 0.8;
}
.order-view-page .current-status-card .status-steps .step-item.active .step-icon {
  background: #E96B3D;
  border: 3px solid white;
  box-shadow: 0 0 0 2px #E96B3D;
}
.order-view-page .current-status-card .status-steps .step-item.active .step-icon img {
  opacity: 1;
  filter: brightness(0) invert(1);
}
.order-view-page .current-status-card .status-steps .step-item.active .step-label {
  color: #E96B3D;
  font-weight: 700;
}
.order-view-page .info-section {
  background: white;
  padding: 20px;
  margin: 0 20px;
  border-radius: 0.9375rem;
}
.order-view-page .info-section .section-title {
  font-size: 16px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 12px;
}
.order-view-page .info-section .info-card .info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px solid #FDFDFD;
}
.order-view-page .info-section .info-card .info-row.align-left {
  justify-content: flex-start;
}
.order-view-page .info-section .info-card .info-row.align-left .value {
  text-align: left;
}
.order-view-page .info-section .info-card .info-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.order-view-page .info-section .info-card .info-row:first-child {
  padding-top: 0;
}
.order-view-page .info-section .info-card .info-row .icon {
  width: 16px;
  height: 16px;
  margin-right: -2px;
  filter: brightness(0) invert(54%) sepia(4%) saturate(1738%) hue-rotate(334deg) brightness(90%) contrast(90%);
}
.order-view-page .info-section .info-card .info-row .label {
  color: #8F796F;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  min-width: 80px;
}
.order-view-page .info-section .info-card .info-row .value {
  font-size: 14px;
  color: #1A1A1A;
  font-weight: 600;
  text-align: right;
  flex: 1;
}
.order-view-page .info-section .info-card .info-row .value.badge-delivery {
  background: #F6F2EF;
  color: #8F796F;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.625rem;
  font-weight: 600;
  line-height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 0;
  white-space: nowrap;
}
.order-view-page .info-section .info-card .info-row .value.badge-delivery::before {
  content: "";
  width: 14px;
  height: 14px;
  background: url("../assets/delivery.svg") no-repeat center/contain;
  filter: brightness(0) invert(54%) sepia(4%) saturate(1738%) hue-rotate(334deg) brightness(90%) contrast(90%);
}
.order-view-page .order-items-card .order-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 0;
}
.order-view-page .order-items-card .order-item:first-child {
  padding-top: 0;
}
.order-view-page .order-items-card .order-item .item-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.order-view-page .order-items-card .order-item .item-info .item-name {
  color: var(--07, #8F796F);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
.order-view-page .order-items-card .order-item .item-info .item-option {
  color: var(--07, #8F796F);
  font-size: 0.625rem;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
.order-view-page .order-items-card .order-item .item-price {
  font-size: 15px;
  color: #8F796F;
  font-weight: 700;
}
.order-view-page .order-items-card .divider {
  height: 1px;
  background: #F8F8F8;
  margin: 12px 0;
}
.order-view-page .order-items-card .price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
}
.order-view-page .order-items-card .price-row .label {
  color: var(--07, #8F796F);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
.order-view-page .order-items-card .price-row .value {
  color: var(--08, #3A332F);
  text-align: right;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
.order-view-page .order-items-card .price-row.highlight .label {
  color: #E96B3D;
}
.order-view-page .order-items-card .price-row.highlight .value {
  color: #E96B3D;
}
.order-view-page .order-items-card .price-row.total {
  padding-top: 12px;
}
.order-view-page .order-items-card .price-row.total .label {
  color: var(--07, #8F796F);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 100%;
}
.order-view-page .order-items-card .price-row.total .value {
  color: var(--08, #3A332F);
  text-align: right;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 100%;
}
.order-view-page .order-time-section {
  background: white;
  padding: 16px 20px;
  margin: 0 20px;
  border-radius: 0.9375rem;
}
.order-view-page .order-time-section .time-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.order-view-page .order-time-section .time-row .label {
  font-size: 14px;
  color: #8F796F;
  font-weight: 500;
}
.order-view-page .order-time-section .time-row .value {
  font-size: 14px;
  color: #1A1A1A;
  font-weight: 500;
}
.order-view-page .action-buttons {
  padding: 0 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.order-view-page .action-buttons .btn-outline {
  width: 100%;
  height: 52px;
  border-radius: 0.9375rem;
  border: 1px solid #E2D4CE;
  background: #FFF;
  box-shadow: 0 4px 10px -3px rgba(143, 121, 111, 0.1);
  font-size: 0.875rem;
  font-weight: 700;
  color: #8F796F;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 100%;
  transition: all 0.2s;
}
.order-view-page .action-buttons .btn-outline:hover {
  background: #FAFAFA;
  border-color: #DDD;
}

.reservation-page {
  background-color: #FBFAF8;
  min-height: 100vh;
  padding-bottom: 70px;
}
.reservation-page .header {
  height: 56px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  position: relative;
  background-color: var(--03, #FBFAF8);
}
.reservation-page .header .btn-back {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reservation-page .header .btn-back img {
  width: 100%;
  height: 100%;
}
.reservation-page .header .title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.125rem;
  font-weight: 700;
  color: #111;
  margin: 0;
}
.reservation-page .reservation-tabs {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  border-bottom: 1px solid #EDEDED;
  padding: 0 20px;
}
.reservation-page .reservation-tabs .tab-item {
  padding: 15px 5px;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  color: #8F796F;
  cursor: pointer;
  position: relative;
  text-align: center;
}
.reservation-page .reservation-tabs .tab-item.active {
  color: #E96B3D;
  font-weight: 600;
}
.reservation-page .reservation-tabs .tab-item.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #E96B3D;
}
.reservation-page .reservation-content {
  padding: 20px;
}
.reservation-page .reservation-content .reservation-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.reservation-page .reservation-content .reservation-card {
  background-color: #FFF;
  border: 1px solid #F6F2EF;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}
.reservation-page .reservation-content .reservation-card .card-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.reservation-page .reservation-content .reservation-card .card-info .top-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.reservation-page .reservation-content .reservation-card .card-info .top-row .status-badge {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}
.reservation-page .reservation-content .reservation-card .card-info .top-row .status-badge.pending {
  color: #FF8B02;
  background-color: #FFF6E9;
}
.reservation-page .reservation-content .reservation-card .card-info .top-row .status-badge.confirmed {
  color: #5A8D63;
  background-color: #E8F5E9;
}
.reservation-page .reservation-content .reservation-card .card-info .top-row .status-badge.cancelled {
  color: #FF4E41;
  background-color: #FFEBEE;
}
.reservation-page .reservation-content .reservation-card .card-info .top-row .order-no {
  font-size: 0.75rem;
  font-weight: 500;
  color: #8F796F;
}
.reservation-page .reservation-content .reservation-card .card-info .store-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: #3A332F;
}
.reservation-page .reservation-content .reservation-card .card-info .details-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.reservation-page .reservation-content .reservation-card .card-info .details-row .info-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #8F796F;
}
.reservation-page .reservation-content .reservation-card .card-info .details-row .info-item img {
  width: 12px;
  height: 12px;
  filter: invert(54%) sepia(4%) saturate(1738%) hue-rotate(334deg) brightness(90%) contrast(90%);
}
.reservation-page .reservation-content .reservation-card .card-info .message-row {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #8F796F;
  margin-top: 2px;
}
.reservation-page .reservation-content .reservation-card .card-info .message-row img {
  width: 12px;
  height: 12px;
  filter: invert(54%) sepia(4%) saturate(1738%) hue-rotate(334deg) brightness(90%) contrast(90%);
}
.reservation-page .reservation-content .reservation-card .chevron-icon {
  width: 18px;
  height: 18px;
  filter: invert(54%) sepia(4%) saturate(1738%) hue-rotate(334deg) brightness(90%) contrast(90%);
}
.reservation-page .reservation-content .upcoming-summary-card {
  background-color: #FFF;
  border-radius: 15px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  margin-bottom: 24px;
}
.reservation-page .reservation-content .upcoming-summary-card .left-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reservation-page .reservation-content .upcoming-summary-card .left-info .icon-box {
  width: 44px;
  height: 44px;
  background-color: #F6F2EF;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reservation-page .reservation-content .upcoming-summary-card .left-info .icon-box img {
  width: 20px;
  height: 20px;
  filter: invert(54%) sepia(4%) saturate(1738%) hue-rotate(334deg) brightness(90%) contrast(90%);
}
.reservation-page .reservation-content .upcoming-summary-card .left-info .text-box {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.reservation-page .reservation-content .upcoming-summary-card .left-info .text-box .label {
  font-size: 0.875rem;
  color: #8F796F;
}
.reservation-page .reservation-content .upcoming-summary-card .left-info .text-box .count {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111;
}
.reservation-page .reservation-content .upcoming-summary-card .btn-new-reservation {
  background: linear-gradient(90deg, #E96B3D 0%, #F9A15D 100%);
  color: #FFF;
  border: none;
  border-radius: 15px;
  padding: 8px 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.reservation-page .reservation-content .upcoming-summary-card .btn-new-reservation:active {
  opacity: 0.8;
}
.reservation-page .reservation-content .empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  border-radius: 1.25rem;
  border: 1px solid var(--04, #F6F2EF);
  background: var(--01, #FFF);
  /* dr_shadow_b */
  box-shadow: 0 4px 10px -3px rgba(143, 121, 111, 0.1);
}
.reservation-page .reservation-content .empty-state .icon-circle {
  width: 60px;
  height: 60px;
  background-color: #F5F5F5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.reservation-page .reservation-content .empty-state .icon-circle img {
  width: 24px;
  height: 24px;
  opacity: 0.3;
}
.reservation-page .reservation-content .empty-state .msg {
  font-size: 1rem;
  font-weight: 500;
  color: #AAA;
  margin-bottom: 30px;
}
.reservation-page .reservation-content .empty-state .btn-reservation-large {
  width: 100%;
  max-width: 280px;
  background: linear-gradient(90deg, #E96B3D 0%, #F9A15D 100%);
  color: #FFF;
  border: none;
  border-radius: 15px;
  padding: 16px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0px 6px 10px -3px rgba(255, 105, 0, 0.1);
  transition: transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.reservation-page .reservation-content .empty-state .btn-reservation-large img {
  width: 16px;
  height: 16px;
}
.reservation-page .reservation-content .empty-state .btn-reservation-large:active {
  transform: scale(0.98);
}

.reservation-view-page {
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  font-family: "Pretendard", sans-serif;
}
.reservation-view-page .header {
  padding: 24px 20px 20px;
  background: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.reservation-view-page .header .title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0;
}
.reservation-view-page .header .order-number {
  color: #8F796F;
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 100%;
  margin: 0;
}
.reservation-view-page .status-card {
  background: white;
  padding: 16px;
  border-radius: 0.9375rem;
  margin: 0 20px;
}
.reservation-view-page .status-card .status-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  gap: 8px;
}
.reservation-view-page .status-card .status-header .status-time {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: #8F796F;
  font-weight: 500;
  flex-shrink: 0;
}
.reservation-view-page .status-card .status-header .status-time .icon {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(54%) sepia(4%) saturate(1738%) hue-rotate(334deg) brightness(90%) contrast(90%);
}
.reservation-view-page .status-card .status-header .status-refresh-area {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.reservation-view-page .status-card .status-header .status-refresh-area .refresh-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #1A1A1A;
  font-weight: 600;
  cursor: pointer;
}
.reservation-view-page .status-card .status-header .status-refresh-area .refresh-toggle input[type=checkbox] {
  appearance: none;
  width: 20px;
  height: 20px;
  background: #E5DDD9;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}
.reservation-view-page .status-card .status-header .status-refresh-area .refresh-toggle input[type=checkbox]::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 4px;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.reservation-view-page .status-card .status-header .status-refresh-area .refresh-toggle input[type=checkbox]:checked {
  background: #E96B3D;
}
.reservation-view-page .status-card .status-header .status-refresh-area .btn-refresh {
  width: 38px;
  height: 38px;
  background: #E96B3D;
  border: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}
.reservation-view-page .status-card .status-header .status-refresh-area .btn-refresh img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}
.reservation-view-page .status-card .status-header .status-refresh-area .btn-refresh:active {
  transform: scale(0.95);
}
.reservation-view-page .confirm-card {
  background: white;
  padding: 40px 20px;
  margin: 0 20px;
  border-radius: 0.9375rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.reservation-view-page .confirm-card .confirm-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
}
.reservation-view-page .confirm-card .confirm-icon img {
  width: 100%;
  height: 100%;
  filter: invert(54%) sepia(85%) saturate(1200%) hue-rotate(334deg) brightness(95%) contrast(90%);
}
.reservation-view-page .confirm-card .confirm-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0;
}
.reservation-view-page .confirm-card .confirm-date {
  color: var(--07, #8F796F);
  /* 07_M */
  font-family: Pretendard;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  /* 0.75rem */
}
.reservation-view-page .info-section {
  background: white;
  padding: 20px;
  margin: 0 20px;
  border-radius: 0.9375rem;
}
.reservation-view-page .info-section .section-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 16px;
}
.reservation-view-page .info-section .info-card {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.reservation-view-page .info-section .info-card .info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}
.reservation-view-page .info-section .info-card .info-row.align-left {
  justify-content: flex-start;
  gap: 8px;
}
.reservation-view-page .info-section .info-card .info-row.align-left .icon {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(54%) sepia(4%) saturate(1738%) hue-rotate(334deg) brightness(90%) contrast(90%);
}
.reservation-view-page .info-section .info-card .info-row .label {
  color: #8F796F;
  font-size: 0.875rem;
  font-weight: 500;
}
.reservation-view-page .info-section .info-card .info-row .value {
  color: #1A1A1A;
  font-size: 0.875rem;
  font-weight: 700;
  text-align: right;
}
.reservation-view-page .info-section .info-card .info-row .value.status-badge {
  background: #FFF8E7;
  color: #E96B3D;
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 0.8125rem;
}
.reservation-view-page .info-section .info-card .notice-list {
  margin: 8px 0 0;
  padding-left: 12px;
  list-style: none;
}
.reservation-view-page .info-section .info-card .notice-list li {
  font-size: 0.75rem;
  color: #B2B2B2;
  position: relative;
  padding-left: 12px;
  line-height: 1.6;
}
.reservation-view-page .info-section .info-card .notice-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #B2B2B2;
}
.reservation-view-page .info-section .info-card .request-box {
  margin-top: 16px;
  border-top: 1px solid #F8F8F8;
  padding-top: 16px;
}
.reservation-view-page .info-section .info-card .request-box .label {
  display: block;
  color: var(--07, #8F796F);
  /* 07_M */
  font-family: Pretendard;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  /* 0.75rem */
  margin-bottom: 12px;
}
.reservation-view-page .info-section .info-card .request-box .request-content {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 12px;
  font-size: 0.875rem;
  color: #8F796F;
}
.reservation-view-page .info-section .info-card .request-box .request-content .icon {
  width: 14px;
  height: 14px;
  filter: brightness(0) invert(54%) sepia(4%) saturate(1738%) hue-rotate(334deg) brightness(90%) contrast(90%);
}
.reservation-view-page .order-time-section {
  background: white;
  padding: 16px 20px;
  margin: 0 20px;
  border-radius: 0.9375rem;
}
.reservation-view-page .order-time-section .time-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.reservation-view-page .order-time-section .time-row .label {
  font-size: 14px;
  color: #8F796F;
  font-weight: 500;
}
.reservation-view-page .order-time-section .time-row .value {
  font-size: 14px;
  color: #3A332F;
  font-weight: 700;
}
.reservation-view-page .action-buttons {
  padding: 0 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.reservation-view-page .action-buttons .btn-outline {
  width: 100%;
  height: 52px;
  border-radius: 0.9375rem;
  border: 1px solid #E2D4CE;
  background: #FFF;
  box-shadow: 0 4px 10px -3px rgba(143, 121, 111, 0.1);
  font-size: 0.875rem;
  font-weight: 700;
  color: #8F796F;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.make-reservation-page {
  position: relative;
  background-color: var(--01, #FFF);
  min-height: 100vh;
  padding-top: 60px;
  padding-bottom: 110px;
}
.make-reservation-page .page-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 400px;
  height: 60px;
  background-color: var(--03, #FBFAF8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
.make-reservation-page .page-header .btn-back {
  position: absolute;
  left: 20px;
  background: none;
  border: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.make-reservation-page .page-header .btn-back img {
  width: 1.25rem;
  height: 1.25rem;
}
.make-reservation-page .page-header h1 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #3A332F;
}
.make-reservation-page .section {
  background-color: #FFFFFF;
  margin: 15px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #F6F2EF;
  box-shadow: 0 4px 10px -3px rgba(143, 121, 111, 0.1);
}
.make-reservation-page .section .section-title {
  font-size: 1rem;
  font-weight: 700;
  color: #3A332F;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.make-reservation-page .section .section-title .essential {
  color: #E96B3D;
  font-size: 0.75rem;
  margin-left: 4px;
}
.make-reservation-page .store-summary-card {
  display: flex;
  gap: 16px;
  align-items: center;
}
.make-reservation-page .store-summary-card .store-img {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}
.make-reservation-page .store-summary-card .store-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.make-reservation-page .store-summary-card .store-info {
  flex: 1;
}
.make-reservation-page .store-summary-card .store-info .top-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}
.make-reservation-page .store-summary-card .store-info .top-area .store-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #3A332F;
}
.make-reservation-page .store-summary-card .store-info .top-area .deposit-badge {
  font-size: 0.625rem;
  font-weight: 600;
  color: #E96B3D;
  background-color: #FFF4EE;
  padding: 2px 6px;
  border-radius: 4px;
}
.make-reservation-page .store-summary-card .store-info .bottom-area {
  display: flex;
  align-items: center;
  gap: 8px;
}
.make-reservation-page .store-summary-card .store-info .bottom-area .category {
  font-size: 0.8125rem;
  color: #8F796F;
}
.make-reservation-page .input-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 10px;
}
.make-reservation-page .input-group:last-child {
  margin-bottom: 0;
}
.make-reservation-page .input-group .label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #8F796F;
  margin-bottom: 8px;
}
.make-reservation-page .input-group .input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.make-reservation-page .input-group .input-wrapper input,
.make-reservation-page .input-group .input-wrapper select,
.make-reservation-page .input-group .input-wrapper textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #EAE0D9;
  border-radius: 12px;
  font-size: 0.9375rem;
  color: #3A332F;
  outline: none;
  background-color: #FFFFFF;
  appearance: none;
}
.make-reservation-page .input-group .input-wrapper input:focus,
.make-reservation-page .input-group .input-wrapper select:focus,
.make-reservation-page .input-group .input-wrapper textarea:focus {
  border-color: #E96B3D;
}
.make-reservation-page .input-group .input-wrapper input::placeholder,
.make-reservation-page .input-group .input-wrapper select::placeholder,
.make-reservation-page .input-group .input-wrapper textarea::placeholder {
  color: #C9B2A8;
}
.make-reservation-page .input-group .input-wrapper input[type=date]::-webkit-calendar-picker-indicator,
.make-reservation-page .input-group .input-wrapper select[type=date]::-webkit-calendar-picker-indicator,
.make-reservation-page .input-group .input-wrapper textarea[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  color: transparent;
  background: transparent;
  cursor: pointer;
}
.make-reservation-page .input-group .input-wrapper textarea {
  min-height: 100px;
  resize: none;
}
.make-reservation-page .input-group .input-wrapper .icon-left {
  position: absolute;
  left: 16px;
  width: 18px;
  height: 18px;
  pointer-events: none;
}
.make-reservation-page .input-group .input-wrapper .icon-right {
  position: absolute;
  right: 16px;
  width: 18px;
  height: 18px;
  pointer-events: none;
  filter: invert(54%) sepia(4%) saturate(1738%) hue-rotate(334deg) brightness(90%) contrast(90%);
}
.make-reservation-page .input-group .input-wrapper .icon-right.no-filter {
  filter: none;
}
.make-reservation-page .input-group .input-wrapper .icon-right.icon-dropdown {
  transform: rotate(90deg);
}
.make-reservation-page .input-group .input-wrapper.has-icon-left input {
  padding-left: 44px;
}
.make-reservation-page .input-group .input-wrapper.has-icon-right input {
  padding-right: 44px;
}
.make-reservation-page .input-group .calculation {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: #8F796F;
  width: 100%;
  font-size: 0.8125rem;
  color: #8F796F;
}
.make-reservation-page .input-group .calculation .total {
  font-size: 1rem;
  font-weight: 700;
  color: #E96B3D;
}
.make-reservation-page .policy-box {
  background-color: var(--11, #FFFCFB);
  border: 1px solid var(--13, #FFE1D6);
  border-radius: 10px;
  padding: 15px 20px;
  margin: 15px;
}
.make-reservation-page .policy-box .policy-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  color: var(--14, #E96B3D);
  /* 07_B */
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 0.75rem */
}
.make-reservation-page .policy-box .policy-header img {
  width: 16px;
  height: 16px;
}
.make-reservation-page .policy-box .policy-list {
  padding-left: 18px;
  margin: 0;
  font-size: 0.75rem;
  color: #8F796F;
  line-height: 1.6;
}
.make-reservation-page .policy-box .policy-list li {
  margin-bottom: 4px;
}
.make-reservation-page .policy-box .policy-list li:last-child {
  margin-bottom: 0;
}
.make-reservation-page .bottom-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 400px;
  background-color: var(--01, #FFF);
  padding: 16px 20px 24px;
  z-index: 100;
}
.make-reservation-page .bottom-bar .btn-pay {
  width: 100%;
  background: linear-gradient(92deg, #E96B3D 1.3%, #F99F29 87.09%);
  color: #FFFFFF;
  border: none;
  padding: 16px;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 15px;
  cursor: pointer;
  box-shadow: 0px 6px 10px -3px rgba(255, 105, 0, 0.1);
  transition: transform 0.2s;
}
.make-reservation-page .bottom-bar .btn-pay:active {
  transform: scale(0.98);
}

.calendar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s;
}
.calendar-overlay.active {
  opacity: 1;
  visibility: visible;
}
.calendar-overlay .calendar-modal {
  background-color: #ffffff;
  width: 320px;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.calendar-overlay .calendar-modal .calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.calendar-overlay .calendar-modal .calendar-header .current-month {
  font-size: 1.125rem;
  font-weight: 700;
  color: #3A332F;
}
.calendar-overlay .calendar-modal .calendar-header .nav-btn {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calendar-overlay .calendar-modal .calendar-header .nav-btn img {
  width: 20px;
  height: 20px;
}
.calendar-overlay .calendar-modal .calendar-header .nav-btn.prev img {
  transform: rotate(180deg);
}
.calendar-overlay .calendar-modal .calendar-body .weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 8px;
}
.calendar-overlay .calendar-modal .calendar-body .weekdays span {
  font-size: 0.8125rem;
  color: #8F796F;
  font-weight: 500;
}
.calendar-overlay .calendar-modal .calendar-body .days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  row-gap: 8px;
}
.calendar-overlay .calendar-modal .calendar-body .days .day {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  color: #3A332F;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.2s;
}
.calendar-overlay .calendar-modal .calendar-body .days .day:hover {
  background-color: #F6F2EF;
}
.calendar-overlay .calendar-modal .calendar-body .days .day.selected {
  background-color: #E96B3D;
  color: #ffffff;
  font-weight: 700;
}
.calendar-overlay .calendar-modal .calendar-footer {
  margin-top: 20px;
  text-align: right;
}
.calendar-overlay .calendar-modal .calendar-footer .btn-close-calendar {
  background: none;
  border: none;
  color: #8F796F;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 12px;
}
.calendar-overlay .calendar-modal .calendar-footer .btn-close-calendar:hover {
  color: #3A332F;
}

.store-management-page {
  position: relative;
  background-color: var(--03, #FBFAF8);
  min-height: 100vh;
  padding-top: 60px;
  padding-bottom: 80px;
}
.store-management-page .page-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 400px;
  height: 60px;
  background-color: var(--03, #FBFAF8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
.store-management-page .page-header .btn-back {
  position: absolute;
  left: 20px;
  background: none;
  border: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.store-management-page .page-header .btn-back img {
  width: 1.25rem;
  height: 1.25rem;
}
.store-management-page .page-header h1 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #333;
}
.store-management-page .tab-menu {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  padding: 0 20px;
  background-color: #FFFFFF;
  margin-top: 0;
  border-bottom: 1px solid #F0F0F0;
}
.store-management-page .tab-menu .tab-item {
  flex: 0 0 auto;
  padding: 16px 0;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  color: #999;
  cursor: pointer;
  position: relative;
}
.store-management-page .tab-menu .tab-item.active {
  color: #E96B3D;
  font-weight: 700;
}
.store-management-page .tab-menu .tab-item.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #E96B3D;
}
.store-management-page .content-area {
  padding: 20px;
}
.store-management-page .content-area .tab-content {
  display: none;
}
.store-management-page .content-area .tab-content.active {
  display: block;
}
.store-management-page .content-area .notice-text {
  font-size: 0.8125rem;
  color: #999;
  margin-bottom: 16px;
}
.store-management-page .content-area .store-list-draggable {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.store-management-page .content-area .store-list-draggable .store-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.store-management-page .content-area .store-list-draggable .store-row .drag-handle {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 10px 10px 0;
  cursor: grab;
  flex-shrink: 0;
}
.store-management-page .content-area .store-list-draggable .store-row .drag-handle:active {
  cursor: grabbing;
}
.store-management-page .content-area .store-list-draggable .store-row .drag-handle span {
  display: block;
  width: 14px;
  height: 2px;
  background-color: #DDD;
  border-radius: 2px;
  transition: background-color 0.2s;
}
.store-management-page .content-area .store-list-draggable .store-row .drag-handle:hover span {
  background-color: #BBB;
}
.store-management-page .content-area .store-list-draggable .store-row.preparing {
  opacity: 0.5;
}
.store-management-page .content-area .store-list-draggable .store-row.preparing .store-card-item .thumb img {
  filter: grayscale(100%);
}
.store-management-page .content-area .store-list-draggable .store-row.marketing {
  opacity: 0.5;
}
.store-management-page .content-area .store-list-draggable .store-row.marketing .store-card-item {
  background: #DADADA;
}
.store-management-page .content-area .store-list-draggable .store-row.marketing .store-card-item .thumb img {
  filter: grayscale(100%);
}
.store-management-page .content-area .store-list-draggable .sortable-ghost {
  opacity: 0.4;
  background-color: #F0F0F0;
  border-radius: 20px;
}
.store-management-page #tab-search-store .search-bar-container {
  margin-bottom: 20px;
}
.store-management-page #tab-search-store .search-bar-container .search-input-wrapper {
  position: relative;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  border: 1px solid #F0F0F0;
  display: flex;
  align-items: center;
  padding: 12px 16px;
  gap: 10px;
}
.store-management-page #tab-search-store .search-bar-container .search-input-wrapper .icon-search {
  width: 20px;
  height: 20px;
  opacity: 0.8;
  cursor: pointer;
  transition: opacity 0.2s;
}
.store-management-page #tab-search-store .search-bar-container .search-input-wrapper .icon-search:hover {
  opacity: 1;
}
.store-management-page #tab-search-store .search-bar-container .search-input-wrapper input {
  flex: 1;
  border: none;
  outline: none;
  background: none;
  font-size: 0.9375rem;
  color: #333;
}
.store-management-page #tab-search-store .search-bar-container .search-input-wrapper input::placeholder {
  color: #CCC;
}
.store-management-page #tab-search-store .search-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.store-management-page #tab-search-store .search-list .store-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.store-management-page #tab-search-store .search-list .store-row .btn-add-store,
.store-management-page #tab-search-store .search-list .store-row .btn-check-complete {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.store-management-page #tab-search-store .search-list .store-row .btn-add-store img {
  width: 24px;
  height: 24px;
  background-color: #E96B3D;
  border-radius: 50%;
}
.store-management-page #tab-search-store .search-list .store-row .btn-check-complete img {
  width: 24px;
  height: 24px;
}
.store-management-page #tab-search-store .search-list .store-row.preparing {
  opacity: 0.5;
}
.store-management-page #tab-search-store .search-list .store-row.preparing .store-card-item .thumb img {
  filter: grayscale(100%);
}
.store-management-page #tab-search-store .search-list .store-row.marketing {
  opacity: 0.5;
}
.store-management-page #tab-search-store .search-list .store-row.marketing .store-card-item {
  background: #DADADA;
}
.store-management-page #tab-search-store .search-list .store-row.marketing .store-card-item .thumb img {
  filter: grayscale(100%);
}
.store-management-page .store-card-item {
  flex: 1;
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  gap: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  align-items: center;
}
.store-management-page .store-card-item .thumb {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background-color: #F8F8F8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.store-management-page .store-card-item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.store-management-page .store-card-item .thumb img.placeholder {
  width: 24px;
  height: 24px;
  object-fit: contain;
  opacity: 0.5;
}
.store-management-page .store-card-item .info {
  flex: 1;
}
.store-management-page .store-card-item .info .title-row {
  margin-bottom: 4px;
}
.store-management-page .store-card-item .info .title-row .status-guidance {
  font-size: 11px;
  color: #8F796F;
  margin-bottom: 2px;
  font-weight: 500;
}
.store-management-page .store-card-item .info .title-row .name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #333;
  margin: 0;
}
.store-management-page .store-card-item .info .sub-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 0.8125rem;
}
.store-management-page .store-card-item .info .sub-row .category {
  color: #888;
}
.store-management-page .store-card-item .info .sub-row .reward {
  color: #E96B3D;
  font-weight: 700;
}
.store-management-page .store-card-item .info .tags-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.store-management-page .store-card-item .info .tags-row .tag {
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: #F5F1EE;
  color: #8F796F;
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 8px;
}
.store-management-page .store-card-item .info .tags-row .tag img {
  width: 12px;
  height: 12px;
  opacity: 0.7;
}
.store-management-page .store-card-item .info .tags-row .tag.essential {
  background-color: #FFF0F0;
  color: #FF5252;
}
.store-management-page .store-card-item .info .tags-row .tag.essential img {
  filter: invert(49%) sepia(35%) saturate(3081%) hue-rotate(331deg) brightness(100%) contrast(106%);
}
.store-management-page .btn-delete {
  background: none;
  border: none;
  padding: 8px 0 8px 8px;
  cursor: pointer;
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.store-management-page .btn-delete::before, .store-management-page .btn-delete::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background-color: #FF5252;
  border-radius: 1px;
}
.store-management-page .btn-delete::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.store-management-page .btn-delete::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.store-management-page .btn-delete img {
  display: none;
}

.recommend-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.recommend-section .recommend-banner {
  background-color: #FFF4E6;
  border: 1px solid #FFE0B2;
  border-radius: 12px;
  padding: 20px;
}
.recommend-section .recommend-banner .title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}
.recommend-section .recommend-banner .desc {
  font-size: 0.75rem;
  font-weight: 500;
  color: #8F796F;
  line-height: 1.4;
}
.recommend-section .recommend-banner .desc .highlight {
  color: #E96B3D;
  font-weight: 700;
}
.recommend-section .search-section .input-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}
.recommend-section .search-section .input-row {
  display: flex;
  gap: 8px;
}
.recommend-section .search-section .input-row input {
  flex: 1;
  height: 50px;
  border: 1px solid #E5E5E5;
  border-radius: 10px;
  padding: 0 16px;
  font-size: 0.9375rem;
  outline: none;
  background-color: #FFFFFF;
}
.recommend-section .search-section .input-row input::placeholder {
  color: #999;
}
.recommend-section .search-section .input-row input:focus {
  border-color: #E96B3D;
}
.recommend-section .search-section .input-row .btn-lookup {
  width: 80px;
  height: 50px;
  background-color: #E96B3D;
  border: none;
  border-radius: 10px;
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
}
.recommend-section .result-card {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.recommend-section .result-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.recommend-section .result-card .card-header .biz-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #333;
}
.recommend-section .result-card .card-header .status-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: #E96B3D;
}
.recommend-section .result-card .card-desc {
  font-size: 0.8125rem;
  color: #666;
  margin-bottom: 16px;
  line-height: 1.4;
}
.recommend-section .result-card .btn-action {
  width: 100%;
  height: 48px;
  background-color: #E96B3D;
  border: none;
  border-radius: 12px;
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.recommend-section .result-card .btn-action img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}
.recommend-section .benefits-section .section-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
}
.recommend-section .benefits-section .benefit-card {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}
.recommend-section .benefits-section .benefit-card .benefit-text {
  font-size: 0.875rem;
  color: #333;
  line-height: 1.5;
  margin-bottom: 16px;
}
.recommend-section .benefits-section .benefit-card .benefit-text .highlight {
  color: #E96B3D;
  font-weight: 700;
}
.recommend-section .benefits-section .benefit-card .example-box {
  background-color: #FBFAF8;
  border-radius: 12px;
  padding: 16px;
}
.recommend-section .benefits-section .benefit-card .example-box p {
  font-size: 0.75rem;
  color: #666;
  line-height: 1.5;
}
.recommend-section .benefits-section .benefit-card .example-box p .highlight {
  color: #E96B3D;
  font-weight: 700;
}
.recommend-section .btn-view-recom {
  margin-top: 24px;
  width: 100%;
  height: 60px;
  background-color: #FFF;
  border: none;
  border-radius: 30px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #8F796F;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.2s;
}
.recommend-section .btn-view-recom:active {
  background-color: #F8F8F8;
  transform: scale(0.98);
}

.point-list-page {
  position: relative;
  background-color: var(--03, #FBFAF8);
  min-height: 100vh;
  padding-bottom: 80px;
}
.point-list-page .header {
  position: sticky;
  top: 0;
  background-color: var(--03, #FBFAF8);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  z-index: 100;
}
.point-list-page .header .title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #333;
}
.point-list-page .point-content {
  padding: 0 20px;
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.point-list-page .main-point-card {
  background: linear-gradient(91deg, #F87D3B 0%, #FFB800 100%);
  border-radius: 20px;
  padding: 10px 20px 20px;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(255, 112, 67, 0.25);
  min-height: 122px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  gap: 10px;
}
.point-list-page .main-point-card .point-top-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}
.point-list-page .main-point-card .text-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.point-list-page .main-point-card .text-group .label {
  font-size: 12px;
  font-weight: 500;
  opacity: 1;
  margin-bottom: 0;
  display: block;
}
.point-list-page .main-point-card .text-group .amount {
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: baseline;
  gap: 4px;
  text-shadow: 0 2px 2px rgba(87, 62, 51, 0.2);
}
.point-list-page .main-point-card .text-group .amount .unit {
  font-size: 18px;
  font-weight: 600;
}
.point-list-page .main-point-card .coin-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  flex-shrink: 0;
  transform: none;
}
.point-list-page .stats-grid {
  display: flex;
  gap: 12px;
}
.point-list-page .stats-grid .stat-card {
  flex: 1;
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.point-list-page .stats-grid .stat-card .icon {
  width: 40px;
  height: 40px;
}
.point-list-page .stats-grid .stat-card .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.point-list-page .stats-grid .stat-card .info .label {
  display: block;
  font-size: 0.875rem;
  color: #888;
  margin-bottom: 4px;
}
.point-list-page .stats-grid .stat-card .info .val {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: #333;
}
.point-list-page .pill-tabs {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.point-list-page .pill-tabs .pill-tab {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid #E0E0E0;
  background-color: #FFFFFF;
  color: #888;
  cursor: pointer;
  transition: all 0.2s;
}
.point-list-page .pill-tabs .pill-tab.active {
  background: linear-gradient(90deg, #E96B3D 0%, #F9A15D 100%);
  border: none;
  color: #FFFFFF;
  border-color: #E96B3D;
  color: #FFFFFF;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(255, 112, 67, 0.2);
}
.point-list-page .section-notice {
  font-size: 0.8125rem;
  color: #999;
  margin-top: -10px;
  margin-bottom: 10px;
}
.point-list-page .store-point-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.point-list-page .store-point-list .store-point-card {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}
.point-list-page .store-point-list .store-point-card .left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}
.point-list-page .store-point-list .store-point-card .left .thumb {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #F8F8F8;
  flex-shrink: 0;
}
.point-list-page .store-point-list .store-point-card .left .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.point-list-page .store-point-list .store-point-card .left .info .name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #333;
  display: block;
  margin-bottom: 2px;
}
.point-list-page .store-point-list .store-point-card .left .info .sub-text {
  font-size: 0.8125rem;
  color: #888;
}
.point-list-page .store-point-list .store-point-card .right {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
}
.point-list-page .store-point-list .store-point-card .right .balance {
  font-size: 1.125rem;
  font-weight: 700;
  color: #E96B3D;
}
.point-list-page .store-point-list .store-point-card .right .btn-arrow {
  width: 16px;
  height: 16px;
  filter: opacity(0.3);
}
.point-list-page .history-list {
  padding-top: 10px;
}
.point-list-page .history-list .history-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}
.point-list-page .history-list .history-card .left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.point-list-page .history-list .history-card .store-name {
  font-size: 15px;
  font-weight: 600;
  color: #333;
}
.point-list-page .history-list .history-card .date {
  font-size: 12px;
  color: #888;
}
.point-list-page .history-list .history-card .type-badge {
  background-color: #f5f5f5;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  font-size: 11px;
  color: #666;
}
.point-list-page .history-list .history-card .right .amount {
  font-size: 16px;
  font-weight: 700;
}
.point-list-page .history-list .history-card .right .amount.earn {
  color: #FF5A00;
  /* Main Orange */
}
.point-list-page .history-list .history-card .right .amount.use {
  color: #333;
}
.point-list-page .history-list .no-data {
  text-align: center;
  padding: 40px 0;
  color: #999;
  font-size: 14px;
}
.point-list-page .history-list .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding-bottom: 20px;
}
.point-list-page .history-list .pagination .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 6px;
  border-radius: 8px;
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  color: #666;
  font-size: 0.8125rem;
  text-decoration: none;
  transition: all 0.2s;
}
.point-list-page .history-list .pagination .page-link:hover {
  border-color: #E96B3D;
  color: #E96B3D;
}
.point-list-page .history-list .pagination .page-link.active {
  background: linear-gradient(90deg, #E96B3D 0%, #F9A15D 100%);
  border: none;
  color: #FFFFFF;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(255, 112, 67, 0.2);
}
.point-list-page .no-data {
  text-align: center;
  padding: 40px 0;
  color: #999;
  font-size: 14px;
}

.mypage-wrapper {
  position: relative;
  background-color: var(--03, #FBFAF8);
  min-height: 100vh;
  padding-bottom: 90px;
  padding-top: 20px;
}
.mypage-wrapper .header-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  margin-bottom: 24px;
}
.mypage-wrapper .header-section .user-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mypage-wrapper .header-section .user-profile .profile-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #FFF0EB;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mypage-wrapper .header-section .user-profile .profile-img img {
  width: 24px;
  height: 24px;
}
.mypage-wrapper .header-section .user-profile .username {
  font-size: 1.125rem;
  font-weight: 700;
  color: #333;
}
.mypage-wrapper .header-section .btn-settings {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mypage-wrapper .header-section .btn-settings img {
  width: 24px;
  height: 24px;
}
.mypage-wrapper .invite-card {
  margin: 0 20px 20px;
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}
.mypage-wrapper .invite-card .card-title {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #333;
}
.mypage-wrapper .invite-card .code-box-wrapper {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.mypage-wrapper .invite-card .code-box-wrapper .code-display {
  flex: 1;
  background-color: #F6F2EF;
  border-radius: 12px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.5px;
}
.mypage-wrapper .invite-card .code-box-wrapper .btn-copy {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: #FFF0EB;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mypage-wrapper .invite-card .code-box-wrapper .btn-copy img {
  width: 20px;
  height: 20px;
  opacity: 0.8;
}
.mypage-wrapper .invite-card .desc-text {
  font-size: 0.8125rem;
  color: #999;
  text-align: center;
  margin-bottom: 20px;
}
.mypage-wrapper .invite-card .btn-share {
  width: 100%;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(90deg, #E96B3D 0%, #F9A15D 100%);
  border: none;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(233, 107, 61, 0.3);
  margin-bottom: 10px;
}
.mypage-wrapper .invite-card .btn-share img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}
.mypage-wrapper .invite-card .btn-shortcut {
  width: 100%;
  height: 52px;
  border-radius: 16px;
  background: #FFFFFF;
  border: 1px solid #E96B3D;
  color: #E96B3D;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}
.mypage-wrapper .invite-card .btn-shortcut img {
  width: 20px;
  height: 20px;
  filter: invert(47%) sepia(91%) saturate(545%) hue-rotate(336deg) brightness(96%) contrast(92%);
}
.mypage-wrapper .stats-row {
  display: flex;
  gap: 12px;
  padding: 0 20px;
  margin-bottom: 20px;
}
.mypage-wrapper .stats-row .stat-item {
  flex: 1;
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 16px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  text-align: center;
}
.mypage-wrapper .stats-row .stat-item .val {
  font-size: 1.125rem;
  font-weight: 800;
}
.mypage-wrapper .stats-row .stat-item .label {
  font-size: 0.8125rem;
  color: #888;
  font-weight: 500;
}
.mypage-wrapper .stats-row .stat-item.green .val {
  color: #4CAF50;
}
.mypage-wrapper .stats-row .stat-item.orange .val {
  color: #E96B3D;
}
.mypage-wrapper .stats-row .stat-item.black .val {
  color: #333;
}
.mypage-wrapper .menu-list-container {
  margin: 0 20px 24px;
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 10px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}
.mypage-wrapper .menu-list-container .menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid #F5F5F5;
  cursor: pointer;
  text-decoration: none;
}
.mypage-wrapper .menu-list-container .menu-item:last-child {
  border-bottom: none;
}
.mypage-wrapper .menu-list-container .menu-item .left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mypage-wrapper .menu-list-container .menu-item .left .icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #F9F9F9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mypage-wrapper .menu-list-container .menu-item .left .icon-circle img {
  width: 18px;
  height: 18px;
  opacity: 0.6;
}
.mypage-wrapper .menu-list-container .menu-item .left .menu-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #333;
}
.mypage-wrapper .menu-list-container .menu-item .right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mypage-wrapper .menu-list-container .menu-item .right .badge {
  background-color: #E96B3D;
  color: #FFFFFF;
  font-size: 0.8125rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mypage-wrapper .menu-list-container .menu-item .right .chevron {
  width: 16px;
  height: 16px;
  opacity: 0.3;
}
.mypage-wrapper .logout-area {
  padding: 0 20px;
}
.mypage-wrapper .logout-area .btn-logout {
  width: 100%;
  height: 50px;
  background-color: #FFFFFF;
  border: 1px solid #EAEAEA;
  border-radius: 16px;
  color: #999;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
}

.my-recom-wrapper {
  position: relative;
  background-color: #FAFAFA;
  min-height: 100vh;
  padding-bottom: 90px;
  padding-top: 20px;
}
.my-recom-wrapper .header {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 20px;
  margin-bottom: 20px;
  position: relative;
}
.my-recom-wrapper .header .btn-back {
  position: absolute;
  left: 20px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.my-recom-wrapper .header .btn-back img {
  width: 24px;
  height: 24px;
}
.my-recom-wrapper .header .title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #333;
}
.my-recom-wrapper .stats-summary {
  display: flex;
  gap: 10px;
  padding: 0 20px;
  margin-bottom: 30px;
}
.my-recom-wrapper .stats-summary .stat-card {
  flex: 1;
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  text-align: center;
}
.my-recom-wrapper .stats-summary .stat-card .val {
  font-size: 1.25rem;
  font-weight: 700;
}
.my-recom-wrapper .stats-summary .stat-card .label {
  font-size: 0.75rem;
  color: #888;
  font-weight: 500;
}
.my-recom-wrapper .stats-summary .stat-card.green .val {
  color: #4CAF50;
}
.my-recom-wrapper .stats-summary .stat-card.orange .val {
  color: #E96B3D;
}
.my-recom-wrapper .stats-summary .stat-card.black .val {
  color: #333;
}
.my-recom-wrapper .section-title {
  padding: 0 20px;
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
}
.my-recom-wrapper .member-list {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}
.my-recom-wrapper .member-list .member-card {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}
.my-recom-wrapper .member-list .member-card .left-info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.my-recom-wrapper .member-list .member-card .left-info .profile-pic {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #F5F5F5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.my-recom-wrapper .member-list .member-card .left-info .profile-pic img {
  width: 24px;
  height: 24px;
  opacity: 0.4;
}
.my-recom-wrapper .member-list .member-card .left-info .text-content .top-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.my-recom-wrapper .member-list .member-card .left-info .text-content .top-row .name {
  font-size: 1rem;
  font-weight: 700;
  color: #333;
}
.my-recom-wrapper .member-list .member-card .left-info .text-content .top-row .badge {
  font-size: 0.6875rem;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 500;
}
.my-recom-wrapper .member-list .member-card .left-info .text-content .top-row .badge.active {
  background-color: #FFF0EB;
  color: #E96B3D;
}
.my-recom-wrapper .member-list .member-card .left-info .text-content .top-row .badge.inactive {
  background-color: #F0F0F0;
  color: #999;
}
.my-recom-wrapper .member-list .member-card .left-info .text-content .date-info {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8125rem;
  color: #999;
}
.my-recom-wrapper .member-list .member-card .left-info .text-content .date-info .icon-cal {
  width: 14px;
  height: 14px;
  opacity: 0.5;
}
.my-recom-wrapper .member-list .member-card .right-info {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.my-recom-wrapper .member-list .member-card .right-info .points {
  font-size: 1rem;
  font-weight: 700;
  color: #E96B3D;
}
.my-recom-wrapper .member-list .member-card .right-info .label {
  font-size: 0.75rem;
  color: #999;
}
.my-recom-wrapper .info-guide-box {
  margin: 0 20px;
  background-color: #FFF9F7;
  border: 1px solid #FFE0D1;
  border-radius: 16px;
  padding: 20px;
}
.my-recom-wrapper .info-guide-box .box-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #E96B3D;
  margin-bottom: 10px;
}
.my-recom-wrapper .info-guide-box .box-title img {
  width: 18px;
  height: 18px;
}
.my-recom-wrapper .info-guide-box .guide-list {
  list-style: none;
}
.my-recom-wrapper .info-guide-box .guide-list li {
  position: relative;
  padding-left: 10px;
  font-size: 0.8125rem;
  color: #888;
  line-height: 1.5;
  margin-bottom: 4px;
}
.my-recom-wrapper .info-guide-box .guide-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #BBB;
}

.my-alarm-wrapper {
  position: relative;
  background-color: var(--03, #FBFAF8);
  min-height: 100vh;
  padding-bottom: 90px;
  padding-top: 20px;
}
.my-alarm-wrapper .header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 20px;
  margin-bottom: 20px;
  background-color: var(--03, #FBFAF8);
}
.my-alarm-wrapper .header .btn-back {
  position: absolute;
  left: 20px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.my-alarm-wrapper .header .btn-back img {
  width: 24px;
  height: 24px;
}
.my-alarm-wrapper .header .title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #333;
}
.my-alarm-wrapper .settings-group {
  margin: 0 20px 20px;
  background-color: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}
.my-alarm-wrapper .settings-group .setting-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #F5F5F5;
}
.my-alarm-wrapper .settings-group .setting-item:last-child {
  border-bottom: none;
}
.my-alarm-wrapper .settings-group .setting-item .text-info {
  max-width: 80%;
}
.my-alarm-wrapper .settings-group .setting-item .text-info .item-title {
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 4px;
  display: block;
}
.my-alarm-wrapper .settings-group .setting-item .text-info .item-desc {
  font-size: 0.8125rem;
  color: #999;
  line-height: 1.4;
}
.my-alarm-wrapper .settings-group .setting-item .toggle-switch {
  position: relative;
  width: 50px;
  height: 30px;
}
.my-alarm-wrapper .settings-group .setting-item .toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.my-alarm-wrapper .settings-group .setting-item .toggle-switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #E0E0E0;
  transition: 0.4s;
  border-radius: 34px;
}
.my-alarm-wrapper .settings-group .setting-item .toggle-switch .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.my-alarm-wrapper .settings-group .setting-item .toggle-switch input:checked + .slider {
  background-color: #E96B3D;
}
.my-alarm-wrapper .settings-group .setting-item .toggle-switch input:checked + .slider:before {
  transform: translateX(20px);
}
.my-alarm-wrapper .info-notice-box {
  margin: 0 20px;
  background-color: #F7F5F4;
  border-radius: 16px;
  padding: 20px;
}
.my-alarm-wrapper .info-notice-box .notice-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 6px;
}
.my-alarm-wrapper .info-notice-box .notice-desc {
  font-size: 0.8125rem;
  color: #888;
  line-height: 1.5;
}

.cs-wrapper {
  position: relative;
  background-color: var(--03, #FBFAF8);
  min-height: 100vh;
  padding-bottom: 90px;
  padding-top: 20px;
}
.cs-wrapper .header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 20px;
  margin-bottom: 20px;
  background-color: var(--03, #FBFAF8);
}
.cs-wrapper .header .btn-back {
  position: absolute;
  left: 20px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.cs-wrapper .header .btn-back img {
  width: 24px;
  height: 24px;
}
.cs-wrapper .header .title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #333;
}
.cs-wrapper .contact-grid {
  display: flex;
  gap: 12px;
  padding: 0 20px;
  margin-bottom: 24px;
}
.cs-wrapper .contact-grid .contact-btn {
  flex: 1;
  aspect-ratio: 1/0.8;
  background-color: #FFFFFF;
  border: 1px solid #EAEAEA;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}
.cs-wrapper .contact-grid .contact-btn .icon {
  width: 28px;
  height: 28px;
  opacity: 0.4;
  transition: opacity 0.2s;
}
.cs-wrapper .contact-grid .contact-btn .label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #888;
}
.cs-wrapper .contact-grid .contact-btn.active {
  border-color: #E96B3D;
  background-color: #FFF9F7;
}
.cs-wrapper .contact-grid .contact-btn.active .icon {
  opacity: 1;
  filter: invert(53%) sepia(68%) saturate(1636%) hue-rotate(338deg) brightness(98%) contrast(93%);
}
.cs-wrapper .contact-grid .contact-btn.active .label {
  color: #E96B3D;
  font-weight: 700;
}
.cs-wrapper .hours-info-box {
  margin: 0 20px 30px;
  background-color: #FFFBF9;
  border: 1px solid #FFEBE5;
  border-radius: 16px;
  padding: 20px;
}
.cs-wrapper .hours-info-box .box-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #E96B3D;
  margin-bottom: 8px;
}
.cs-wrapper .hours-info-box .time-text {
  font-size: 0.875rem;
  color: #888;
  line-height: 1.6;
}
.cs-wrapper .section-title {
  padding: 0 20px;
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
}
.cs-wrapper .faq-list {
  margin: 0 20px;
  background-color: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}
.cs-wrapper .faq-list .faq-item {
  border-bottom: 1px solid #F5F5F5;
}
.cs-wrapper .faq-list .faq-item:last-child {
  border-bottom: none;
}
.cs-wrapper .faq-list .faq-item .question-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.cs-wrapper .faq-list .faq-item .question-row .q-text {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #333;
}
.cs-wrapper .faq-list .faq-item .question-row .accordion-icon {
  width: 20px;
  height: 20px;
  opacity: 0.3;
  transition: transform 0.3s;
}
.cs-wrapper .faq-list .faq-item .answer-row {
  display: none;
  padding: 0 20px 20px;
  font-size: 0.875rem;
  color: #888;
  line-height: 1.6;
}
.cs-wrapper .faq-list .faq-item.expanded .accordion-icon {
  transform: rotate(180deg);
}
.cs-wrapper .faq-list .faq-item.expanded .answer-row {
  display: block;
}

.secu-wrapper {
  position: relative;
  background-color: var(--03, #FBFAF8);
  min-height: 100vh;
  padding-bottom: 90px;
  padding-top: 20px;
}
.secu-wrapper .header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 20px;
  margin-bottom: 20px;
  background-color: var(--03, #FBFAF8);
}
.secu-wrapper .header .btn-back {
  position: absolute;
  left: 20px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.secu-wrapper .header .btn-back img {
  width: 24px;
  height: 24px;
}
.secu-wrapper .header .title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #333;
}
.secu-wrapper .section-label {
  padding: 0 20px;
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
}
.secu-wrapper .password-card {
  margin: 0 20px 30px;
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  cursor: pointer;
}
.secu-wrapper .password-card .left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.secu-wrapper .password-card .left .icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #F7F5F4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.secu-wrapper .password-card .left .icon-circle img {
  width: 20px;
  height: 20px;
  opacity: 0.5;
}
.secu-wrapper .password-card .left .text-info .main-text {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 4px;
}
.secu-wrapper .password-card .left .text-info .sub-text {
  display: block;
  font-size: 0.8125rem;
  color: #999;
}
.secu-wrapper .password-card .chevron {
  width: 20px;
  height: 20px;
  opacity: 0.3;
}
.secu-wrapper .auth-settings-group {
  margin: 0 20px 30px;
  background-color: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}
.secu-wrapper .auth-settings-group .setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 20px;
  border-bottom: 1px solid #F5F5F5;
}
.secu-wrapper .auth-settings-group .setting-row:last-child {
  border-bottom: none;
}
.secu-wrapper .auth-settings-group .setting-row .text-info {
  max-width: 75%;
}
.secu-wrapper .auth-settings-group .setting-row .text-info .main-text {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 6px;
}
.secu-wrapper .auth-settings-group .setting-row .text-info .sub-text {
  display: block;
  font-size: 0.8125rem;
  color: #999;
}
.secu-wrapper .auth-settings-group .setting-row .toggle-switch {
  position: relative;
  width: 50px;
  height: 30px;
}
.secu-wrapper .auth-settings-group .setting-row .toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.secu-wrapper .auth-settings-group .setting-row .toggle-switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #E0E0E0;
  transition: 0.4s;
  border-radius: 34px;
}
.secu-wrapper .auth-settings-group .setting-row .toggle-switch .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.secu-wrapper .auth-settings-group .setting-row .toggle-switch input:checked + .slider {
  background-color: #E96B3D;
}
.secu-wrapper .auth-settings-group .setting-row .toggle-switch input:checked + .slider:before {
  transform: translateX(20px);
}
.secu-wrapper .security-status-box {
  margin: 0 20px;
  background-color: #EDF7F2;
  border-radius: 16px;
  padding: 20px;
}
.secu-wrapper .security-status-box .status-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 6px;
}
.secu-wrapper .security-status-box .status-desc {
  font-size: 0.8125rem;
  color: #4CAF50;
}

.receipt-page {
  padding: 0 20px;
  background-color: #FBFAF8;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.receipt-page .header-area {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 10px;
}
.receipt-page .header-area h1 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #3A332F;
}
.receipt-page .receipt-container {
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.05));
  position: relative;
}
.receipt-page .receipt-card {
  background-color: #FFF;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}
.receipt-page .receipt-card .store-header {
  background-color: #F6F2EF;
  padding: 40px 20px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.receipt-page .receipt-card .store-header .store-thumb {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  background: white;
}
.receipt-page .receipt-card .store-header .store-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.receipt-page .receipt-card .store-header .store-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3A332F;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.receipt-page .receipt-card .store-header .store-info {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #8F796F;
  font-weight: 400;
}
.receipt-page .receipt-card .receipt-body {
  padding: 24px 24px 0;
}
.receipt-page .receipt-card .receipt-body .order-no {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--07, #8F796F);
  margin-bottom: 24px;
  display: block;
}
.receipt-page .receipt-card .receipt-body .divider {
  height: 1px;
  background-color: #F5F1EE;
  margin: 0 -24px;
}
.receipt-page .receipt-card .receipt-body .divider.cancel-divider {
  border-top: 2px dashed #ff4d4f;
  margin: 15px 0;
  background-color: transparent;
  height: 0;
}
.receipt-page .receipt-card .receipt-body .cancel-summary {
  background-color: #fff1f0;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ffccc7;
  margin-bottom: 10px;
}
.receipt-page .receipt-card .receipt-body .cancel-summary .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.receipt-page .receipt-card .receipt-body .cancel-summary .row:last-child {
  margin-bottom: 0;
}
.receipt-page .receipt-card .receipt-body .cancel-summary .row .label {
  font-size: 0.9375rem;
  color: #8F796F;
}
.receipt-page .receipt-card .receipt-body .cancel-summary .row .val {
  font-size: 0.9375rem;
  color: #8F796F;
}
.receipt-page .receipt-card .receipt-body .cancel-summary .row.cancel-header {
  margin-bottom: 8px;
}
.receipt-page .receipt-card .receipt-body .cancel-summary .row.cancel-header .label {
  color: #ff4d4f;
  font-weight: bold;
  font-size: 1.1em;
}
.receipt-page .receipt-card .receipt-body .cancel-summary .row.cancel-header .val {
  color: #ff4d4f;
  font-weight: bold;
}
.receipt-page .receipt-card .receipt-body .cancel-summary .row .val.amt-highlight {
  color: #ff4d4f;
  font-weight: bold;
}
.receipt-page .receipt-card .receipt-body .item-section {
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.receipt-page .receipt-card .receipt-body .item-section .item-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.receipt-page .receipt-card .receipt-body .item-section .item-row .left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.receipt-page .receipt-card .receipt-body .item-section .item-row .left .name {
  font-size: 1rem;
  font-weight: 600;
  color: #8F796F;
}
.receipt-page .receipt-card .receipt-body .item-section .item-row .left .qty {
  font-size: 0.8125rem;
  color: #8F796F;
  opacity: 0.8;
}
.receipt-page .receipt-card .receipt-body .item-section .item-row .price {
  font-size: 1rem;
  font-weight: 700;
  color: #8F796F;
}
.receipt-page .receipt-card .receipt-body .summary-section {
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.receipt-page .receipt-card .receipt-body .summary-section .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9375rem;
  color: #8F796F;
}
.receipt-page .receipt-card .receipt-body .summary-section .row.point {
  color: #E96B3D;
  font-weight: 600;
}
.receipt-page .receipt-card .receipt-body .summary-section .row.total {
  margin-top: 4px;
  color: #1A1A1A;
  font-weight: 700;
}
.receipt-page .receipt-card .receipt-body .summary-section .row.total .label {
  font-size: 1.125rem;
}
.receipt-page .receipt-card .receipt-body .summary-section .row.total .val {
  font-size: 1.625rem;
}
.receipt-page .receipt-card .receipt-body .summary-section .row.total .val.canceled {
  text-decoration: line-through;
  color: #999;
}
.receipt-page .receipt-card .receipt-body .payment-section {
  padding: 16px 0 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.receipt-page .receipt-card .receipt-body .payment-section .row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
}
.receipt-page .receipt-card .receipt-body .payment-section .row .label {
  color: #8F796F;
}
.receipt-page .receipt-card .receipt-body .payment-section .row .value {
  color: #333;
  font-weight: 500;
  text-align: right;
}
.receipt-page .receipt-card .receipt-notice {
  padding: 0 24px 40px;
  text-align: center;
  font-size: 0.75rem;
  color: #C9B2A8;
  line-height: 1.5;
  letter-spacing: -0.2px;
}
.receipt-page .receipt-card .zig-zag {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(-135deg, #FBFAF8 5px, transparent 0), linear-gradient(135deg, #FBFAF8 5px, transparent 0);
  background-size: 10px 10px;
  background-repeat: repeat-x;
}
.receipt-page .action-group {
  display: flex;
  gap: 12px;
  padding: 24px 0 40px;
}
.receipt-page .action-group .btn-action {
  flex: 1;
  height: 60px;
  border-radius: 20px;
  background: #FFF;
  border: 1px solid #E2D4CE;
  color: #8F796F;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(143, 121, 111, 0.08);
  transition: all 0.2s;
}
.receipt-page .action-group .btn-action:active {
  transform: scale(0.98);
  background: #F9F7F6;
}

.recruit-screen {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-image: url("../assets/login_bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: 40px;
  overflow-y: auto;
}
.recruit-screen::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.85) 60%, rgba(0, 0, 0, 0.95) 100%);
  z-index: 1;
}
.recruit-screen .recruit-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 60px;
}
.recruit-screen .brand-section {
  text-align: center;
  margin-bottom: 30px;
}
.recruit-screen .brand-section .logo {
  width: 84px;
  height: 84px;
  margin: 0 auto -15px;
}
.recruit-screen .brand-section .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.recruit-screen .brand-section .app-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}
.recruit-screen .brand-section .tagline {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}
.recruit-screen .brand-section .tagline span {
  font-weight: 700;
}
.recruit-screen .brand-section .tagline span.o {
  color: #FF9D79;
}
.recruit-screen .brand-section .tagline span.w {
  color: #F6F2EF;
}
.recruit-screen .brand-section .invite-badge {
  display: inline-flex;
  background: rgba(44, 35, 27, 0.8);
  padding: 6px 16px;
  border-radius: 99px;
  margin-top: 24px;
  font-size: 0.8125rem;
  color: #E96B3D;
  font-weight: 600;
}
.recruit-screen .form-section {
  width: 100%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.recruit-screen .form-section .input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.recruit-screen .form-section .input-group label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #FFFFFF;
  padding-left: 4px;
}
.recruit-screen .form-section .input-group input {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 12px;
  color: #FFFFFF;
  font-size: 1rem;
  outline: none;
  transition: background 0.2s;
}
.recruit-screen .form-section .input-group input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.recruit-screen .form-section .input-group input:focus {
  background: rgba(255, 255, 255, 0.15);
}
.recruit-screen .agreement-section {
  width: 100%;
  padding: 0 20px;
  margin-top: 24px;
}
.recruit-screen .agreement-section .agreement-box {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 20px;
}
.recruit-screen .agreement-section .agreement-box .agree-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}
.recruit-screen .agreement-section .agreement-box .agree-item.all {
  padding-top: 0;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.recruit-screen .agreement-section .agreement-box .agree-item.all .label {
  font-size: 1.125rem;
  font-weight: 700;
}
.recruit-screen .agreement-section .agreement-box .agree-item .label {
  flex: 1;
  font-size: 0.9375rem;
  color: #FFFFFF;
}
.recruit-screen .agreement-section .agreement-box .agree-item .label .required {
  color: #FF5C5C;
  margin-left: 4px;
}
.recruit-screen .agreement-section .agreement-box .agree-item .btn-view {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: underline;
  cursor: pointer;
}
.recruit-screen .agreement-section .agreement-box .agree-item .checkbox-custom {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #AEAEAE;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.recruit-screen .agreement-section .agreement-box .agree-item .checkbox-custom img {
  width: 14px;
  height: 14px;
  filter: brightness(0) invert(1);
  opacity: 0.3;
}
.recruit-screen .agreement-section .agreement-box .agree-item .checkbox-custom.checked {
  background: #E96B3D;
}
.recruit-screen .agreement-section .agreement-box .agree-item .checkbox-custom.checked img {
  opacity: 1;
}
.recruit-screen .action-section {
  width: 100%;
  padding: 24px 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.recruit-screen .action-section .btn-submit {
  width: 100%;
  height: 60px;
  background: linear-gradient(90deg, #E96B3D 0%, #F9A15D 100%);
  border: none;
  border-radius: 16px;
  color: #FFFFFF;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(233, 107, 61, 0.3);
}
.recruit-screen .action-section .btn-back {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  cursor: pointer;
  text-decoration: none;
}
.recruit-screen .footer-links {
  margin-top: 30px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}
.recruit-screen .footer-links a {
  color: #E96B3D;
  opacity: 0.8;
  text-decoration: none;
  margin: 0 4px;
}
.recruit-screen .footer-links {
  margin-top: 30px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}
.recruit-screen .footer-links a {
  color: #E96B3D;
  opacity: 0.8;
  text-decoration: none;
  margin: 0 4px;
}

.join-screen {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #FBFAF8;
  padding-bottom: 40px;
  overflow-y: auto;
}
.join-screen .join-content {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding-top: 40px;
  padding-left: 20px;
  padding-right: 20px;
  gap: 32px;
}
.join-screen .brand-section {
  margin-bottom: 24px;
}
.join-screen .brand-section .brand-container {
  display: flex;
  align-items: center;
  gap: 16px;
}
.join-screen .brand-section .logo-box {
  flex-shrink: 0;
}
.join-screen .brand-section .logo-box .logo-circle {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 6px 8px 0px rgba(40, 38, 37, 0.1);
  flex-shrink: 0;
}
.join-screen .brand-section .logo-box .logo-circle .logo-img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}
.join-screen .brand-section .text-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 60px;
}
.join-screen .brand-section .text-box .main-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #E96B3D;
  line-height: 1;
  margin: 0;
}
.join-screen .brand-section .text-box .sub-title {
  font-size: 0.6875rem;
  font-weight: 500;
  color: #3A332F;
  margin: 0;
}
.join-screen .brand-section .text-box .recommender-row {
  display: flex;
  align-items: center;
  gap: 4px;
}
.join-screen .brand-section .text-box .recommender-row img {
  width: 16px;
  height: 16px;
  border-radius: 50%;
}
.join-screen .brand-section .text-box .recommender-row .info-text {
  font-size: 0.625rem;
  font-weight: 500;
  color: #8F796F;
  margin: 0;
}
.join-screen .brand-section .text-box .recommender-row .info-text .highlight {
  color: #E96B3D;
}
.join-screen .section-title {
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
}
.join-screen .intro-section .intro-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.join-screen .intro-section .intro-cards .card {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid #F6F2EF;
  box-shadow: 0 4px 10px -3px rgba(143, 121, 111, 0.1);
}
.join-screen .intro-section .intro-cards .card .icon-box {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.join-screen .intro-section .intro-cards .card .icon-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.join-screen .intro-section .intro-cards .card .text-box {
  padding-top: 2px;
}
.join-screen .intro-section .intro-cards .card .text-box h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 4px;
  line-height: 1.3;
}
.join-screen .intro-section .intro-cards .card .text-box p {
  font-size: 0.8125rem;
  color: #888;
  line-height: 1.4;
}
.join-screen .form-section .input-group {
  margin-bottom: 20px;
}
.join-screen .form-section .input-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}
.join-screen .form-section .input-group label .required {
  color: #FF5C5C;
  margin-left: 2px;
}
.join-screen .form-section .input-group label .optional {
  color: #999;
  font-weight: 400;
  margin-left: 4px;
}
.join-screen .form-section .input-group input,
.join-screen .form-section .input-group textarea {
  width: 100%;
  background-color: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 0.9375rem;
  color: #333;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}
.join-screen .form-section .input-group input::placeholder,
.join-screen .form-section .input-group textarea::placeholder {
  color: #CCC;
}
.join-screen .form-section .input-group input:focus,
.join-screen .form-section .input-group textarea:focus {
  border-color: #E96B3D;
}
.join-screen .form-section .input-group input {
  height: 50px;
}
.join-screen .form-section .input-group textarea {
  height: 100px;
  resize: none;
}
.join-screen .action-section {
  padding-bottom: 40px;
}
.join-screen .action-section .btn-submit {
  width: 100%;
  height: 56px;
  background: linear-gradient(90deg, #E96B3D 0%, #F9A15D 100%);
  border: none;
  border-radius: 12px;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(233, 107, 61, 0.25);
  transition: transform 0.1s;
}
.join-screen .action-section .btn-submit:active {
  transform: scale(0.98);
}

.policy-body {
  font-family: "Pretendard", sans-serif;
  line-height: 1.6;
  color: #333;
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background-color: #fff;
}
.policy-body .policy-container {
  margin-bottom: 60px;
  border: 1px solid #eee;
  padding: 30px;
  border-radius: 8px;
}
.policy-body h1 {
  font-size: 24px;
  color: #111;
  border-bottom: 2px solid #333;
  padding-bottom: 10px;
}
.policy-body h2 {
  font-size: 18px;
  color: #222;
  margin-top: 25px;
}
.policy-body p, .policy-body li {
  font-size: 14px;
  color: #555;
}
.policy-body ul {
  padding-left: 20px;
}
.policy-body .info-box {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 4px;
  margin-top: 10px;
}
.policy-body .strong {
  font-weight: bold;
  color: #000;
}

.agreement-body {
  font-family: "Malgun Gothic", "Apple SD Gothic Neo", sans-serif;
  line-height: 1.6;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
}
.agreement-body p {
  margin-bottom: 15px;
}
.agreement-body ul, .agreement-body ol {
  margin-bottom: 15px;
}
.agreement-body li {
  margin-bottom: 5px;
}
.agreement-body hr {
  margin: 40px 0;
  border: 0;
  border-top: 1px solid #ddd;
}
.agreement-body table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.agreement-body th, .agreement-body td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
}
.agreement-body th {
  background-color: #f2f2f2;
  font-weight: bold;
}
.agreement-body .version-info {
  margin-top: 50px;
  font-weight: bold;
  font-size: 0.9em;
  color: #666;
}
.agreement-body.store-agreement h1 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.8em;
  border-bottom: 2px solid #333;
  padding-bottom: 10px;
}
.agreement-body.store-agreement h2 {
  font-size: 1.3em;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #222;
}
.agreement-body.user-agreement h1 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.8em;
}
.agreement-body.user-agreement h2 {
  font-size: 1.5em;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #222;
}
.agreement-body.user-agreement h3 {
  font-size: 1.2em;
  margin-top: 30px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
}
.agreement-body.user-privacy h1 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.8em;
}
.agreement-body.user-privacy h2 {
  font-size: 1.2em;
  margin-top: 30px;
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a,
button {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  background-color: #EEE;
  font-family: "Pretendard", sans-serif;
  color: #8F796F;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  min-height: 100vh;
  background-color: #FBFAF8;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

/*# sourceMappingURL=main.css.map */
