/* ===== 메인 컨테이너 스타일 ===== */
.vavoom-mypage-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

/* ===== 탭 컨테이너 스타일 ===== */
.vavoom-tabs-container {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  background: #ffffff;
  border-radius: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.vavoom-tabs-container::-webkit-scrollbar {
  display: none;
}

/* 탭 아이템 스타일 */
.vavoom-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  color: #495057;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.vavoom-tab:hover {
  background: #e9ecef;
  border-color: #dee2e6;
  transform: translateY(-2px);
}

/* 반응형 디자인 */
  .vavoom-tabs-container {
    padding: 15px 0;
    gap: 10px;
    border-radius: 10px;
  }

  .vavoom-tab {
    padding: 10px 16px;
    font-size: 13px;
  }

  /* 주문 상태 탭 - 태블릿 */
  .vavoom-order-status-tabs {
    gap: 10px;
  }

  .vavoom-order-status-tab {
    padding: 10px 16px;
    font-size: 13px;
  }

  .vavoom-order-status-tab .count {
    font-size: 11px;
    padding: 2px 6px;
  }
}

  .vavoom-tabs-container {
    padding: 4px 0px !important;
    gap: 8px;
    margin-bottom: 20px;
    border-radius: 8px;
    /* 모바일에서 스크롤 힌트 표시 */
    position: relative;
  }

  .vavoom-tab {
    padding: 8px 12px;
    font-size: 12px;
    border-radius: 8px;
    min-width: auto;
  }

  /* 주문 상태 탭 - 모바일 */
  .vavoom-order-status-tabs {
    gap: 8px;
    margin-bottom: 20px;
  }

  .vavoom-order-status-tab {
    padding: 8px 14px !important;
    font-size: 12px !important;
    border-radius: 8px !important;
    min-width: auto;
  }

  .vavoom-order-status-tab .count {
    font-size: 10px !important;
    padding: 1px 6px !important;
  }
}

  .vavoom-tabs-container {
    gap: 6px;
    margin-bottom: 15px;
  }

  .vavoom-tab {
    padding: 6px 10px !important;
    font-size: 11px;
    border-width: 1px;
  }

  .vavoom-tab .text {
    font-size: 13px;
  }

  /* 주문 상태 탭 - 초소형 화면 */
  .vavoom-order-status-tabs {
    gap: 6px;
    margin-bottom: 15px;
  }

  .vavoom-order-status-tab {
    padding: 6px 10px !important;
    font-size: 13px !important;
    border-width: 1px !important;
  }

  .vavoom-order-status-tab .count {
    font-size: 9px !important;
    padding: 1px 4px !important;
  }
}

/* ===== 주문 상태 탭 스타일 ===== */
.vavoom-order-status-tabs {
  display: flex;
  gap: 12px;
  background: #ffffff;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.vavoom-order-status-tabs::-webkit-scrollbar {
  display: none;
}

.vavoom-order-status-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  color: #495057;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  text-decoration: none;
}

.vavoom-order-status-tab:hover {
  background: #e9ecef;
  border-color: #dee2e6;
  transform: translateY(-2px);
  text-decoration: none;
}

.vavoom-order-status-tab.active {
  background: #f95251;
  color: white;
  border-color: #f95251;
}

.vavoom-order-status-tab .count {
  background: rgba(0, 0, 0, 0.1);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.vavoom-order-status-tab.active .count {
  background: rgba(255, 255, 255, 0.2);
}

/* ===== 주문 필터 로딩 스타일 ===== */
.vavoom-order-status-tab.disabled {
  opacity: 0.6;
  pointer-events: none;
  cursor: not-allowed;
}

.vavoom-order-status-tab .loading-spinner {
  display: inline-block;
  font-size: 14px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* 주문 리스트 로딩 중 상태 */
.vavoom-order-list[style*="opacity: 0.3"] {
  transition: opacity 0.2s ease-in-out;
  pointer-events: none;
}

/* 스켈레톤 컨테이너 위치 */
.order-skeleton-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  z-index: 10;
  padding: 20px;
}

/* ===== 계정정보 섹션 스타일 ===== */

/* 계정정보 컨테이너 */
.vavoom-account-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px;
}

.vavoom-account-container h2 {
  margin: 0 0 30px 0;
  color: #495057;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}

/* 계정정보 카드 레이아웃 */
.vavoom-account-cards {
  display: grid;
  gap: 24px;
  margin-bottom: 30px;
}

.vavoom-account-card h3 {
  margin: 0 0 20px 0;
  color: #495057;
  font-size: 24px !important;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vavoom-account-card h3 .icon {
  font-size: 22px;
  color: #007bff;
}

/* 프로필 섹션 */
.vavoom-profile-section {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #e9ecef;
}

.vavoom-profile-avatar {
  position: relative;
  flex-shrink: 0;
}

.vavoom-avatar-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fba5a5 0%, #fa5250 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 36px;
  font-weight: 700;
}

.vavoom-avatar-circle img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.vavoom-profile-info {
  flex: 1;
  min-width: 0;
}

.vavoom-profile-name {
  margin: 0 0 8px 0;
  font-size: 24px;
  font-weight: 700;
  color: #495057;
}

.vavoom-profile-email {
  margin: 0 0 16px 0;
  font-size: 16px;
  color: #6c757d;
}

.vavoom-profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: #6c757d;
}

.vavoom-profile-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.vavoom-profile-meta .icon {
  font-size: 16px;
  color: #007bff;
}

/* 폼 스타일 */
.vavoom-account-form {
  display: grid;
  gap: 20px;
}

.vavoom-form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vavoom-form-row label {
  font-weight: 600;
  color: #495057;
  font-size: 14px;
}

.vavoom-form-row input[type="text"],
.vavoom-form-row input[type="email"],
.vavoom-form-row input[type="password"] {
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #ffffff;
}

.vavoom-form-row input:focus {
  outline: none;
  border-color: #f95251;
}

.vavoom-form-row input.valid {
  border-color: #28a745;
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.vavoom-form-row input.invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.vavoom-form-row .vavoom-readonly {
  padding: 12px 16px;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  color: #6c757d;
  font-size: 16px;
}

/* SNS 연동 섹션 */
.vavoom-social-section {
  margin-top: 24px;
}

.vavoom-social-providers {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.vavoom-social-provider {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  background: #ffffff;
  transition: all 0.3s ease;
  min-width: 200px;
}

.vavoom-social-provider:hover {
  border-color: #f95251;
}

.vavoom-social-provider.connected {
  border-color: #28a745;
  background: #f8fff9;
}

.vavoom-social-provider .provider-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.vavoom-social-provider .provider-info {
  flex: 1;
  min-width: 0;
}

.vavoom-social-provider .provider-name {
  font-weight: 600;
  color: #495057;
  margin-bottom: 4px;
}

.vavoom-social-provider .provider-status {
  font-size: 12px;
  color: #6c757d;
}

.vavoom-social-provider.connected .provider-status {
  color: #28a745;
}

.vavoom-social-btn {
  padding: 6px 12px;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.vavoom-social-btn.connect {
  background: #f95251;
  color: white;
}

.vavoom-social-btn.connect:hover {
  background: #f95251;
}

.vavoom-social-btn.disconnect {
  background: #dc3545;
  color: white;
}

.vavoom-social-btn.disconnect:hover {
  background: #c82333;
}

/* 비밀번호 변경 섹션 */
.vavoom-password-section {
  border-bottom: 1px solid #e9ecef;
  margin-bottom: 24px;
  padding-bottom: 24px;
}

.vavoom-password-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  cursor: pointer;
  color: #f95251;
  font-weight: 600;
}

.vavoom-password-toggle:hover {
  color: #f95251;
}

.vavoom-password-form {
  display: none;
  gap: 16px;
  margin-top: 16px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  border: 2px solid #e9ecef;
}

.vavoom-password-form.show {
  display: grid;
}

.vavoom-password-strength {
  margin-top: 8px;
  height: 4px;
  background: #e9ecef;
  border-radius: 2px;
  overflow: hidden;
}

.vavoom-password-strength-bar {
  height: 100%;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.vavoom-password-strength.weak .vavoom-password-strength-bar {
  width: 33%;
  background: #dc3545;
}

.vavoom-password-strength.medium .vavoom-password-strength-bar {
  width: 66%;
  background: #ffc107;
}

.vavoom-password-strength.strong .vavoom-password-strength-bar {
  width: 100%;
  background: #28a745;
}

.vavoom-password-hint {
  margin-top: 4px;
  font-size: 12px;
  color: #6c757d;
}

/* 액션 버튼 */
.vavoom-form-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e9ecef;
}

.vavoom-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 120px;
  justify-content: center;
}

.vavoom-btn.primary {
  background: #f95251;
  color: white;
}

.vavoom-btn.primary:hover {
  background: #f95251;
  color: white;
  text-decoration: none;
}

.vavoom-btn.secondary {
  background: #f95251;
  color: white;
}

.vavoom-btn.secondary:hover {
  background: #f95251;
  color: white;
  text-decoration: none;
}

.vavoom-btn.outline {
  background: transparent;
  color: #007bff;
  border: 2px solid #007bff;
}

.vavoom-btn.outline:hover {
  background: #007bff;
  color: white;
  transform: translateY(-2px);
}

.vavoom-btn:disabled {
  background: #e9ecef;
  color: #6c757d;
  cursor: not-allowed;
  opacity: 0.6;
}

.vavoom-btn:disabled:hover {
  background: #e9ecef;
  transform: none;
  box-shadow: none;
}

/* 알림 메시지 */
.vavoom-notice {
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
}

.vavoom-notice.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.vavoom-notice.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.vavoom-notice.warning {
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeaa7;
}

.vavoom-notice.info {
  background: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

/* 토스트 메시지 */
.vavoom-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-weight: 500;
  font-size: 14px;
  transform: translateX(400px);
  opacity: 0;
  transition: all 0.3s ease;
  max-width: 300px;
}

.vavoom-toast.show {
  transform: translateX(0);
  opacity: 1;
}

.vavoom-toast.vavoom-toast-success {
  background: #d4edda;
  color: #155724;
  border-left: 4px solid #28a745;
}

.vavoom-toast.vavoom-toast-error {
  background: #f8d7da;
  color: #721c24;
  border-left: 4px solid #dc3545;
}

.vavoom-toast-content {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* 로딩 스피너 */
.vavoom-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
}

.vavoom-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #007bff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 16px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.vavoom-loading p {
  color: #6c757d;
  font-size: 16px;
  margin: 0;
}

/* 에러 상태 */
.vavoom-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
}

.vavoom-error-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.vavoom-error h3 {
  color: #495057;
  margin: 0 0 12px 0;
  font-size: 20px;
}

.vavoom-error p {
  color: #6c757d;
  margin: 0 0 24px 0;
  font-size: 16px;
}

.vavoom-retry-btn {
  background: #007bff;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.vavoom-retry-btn:hover {
  background: #0056b3;
}

/* ===== 대시보드 섹션 스타일 (복구) ===== */

/* 대시보드 컨테이너 */
.vavoom-dashboard {
  display: grid;
  gap: 25px;
  animation: fadeInUp 0.5s ease-out;
}

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

/* 사용자 정보 섹션 */
.vavoom-user-info {
  background: linear-gradient(135deg, #fba5a5 0%, #fa5250 100%);
  color: #ffffff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@keyframes float {
  0% {
    transform: translateX(0) translateY(0);
  }
  100% {
    transform: translateX(-100px) translateY(-100px);
  }
}

.vavoom-user-name {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.vavoom-user-level {
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: normal;
  display: inline-block;
  position: relative;
  z-index: 1;
}

/* 빠른 통계 */
.vavoom-quick-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  position: relative;
  z-index: 1;
}

.vavoom-stat-item {
  text-align: center;
  transition: transform 0.2s ease;
}

.vavoom-stat-item:hover {
  transform: scale(1.05);
}

.vavoom-stat-value {
  font-size: 20px;
  font-weight: bold;
  display: block;
}

.vavoom-stat-label {
  font-size: 12px;
  opacity: 0.9;
  margin-top: 5px;
}

/* 최근 주문 섹션 */
.vavoom-recent-orders {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e9ecef;
}

.vavoom-recent-orders h3 {
  padding: 20px 25px;
  margin: 0;
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
  font-size: 18px !important;
  color: #495057;
}

.vavoom-order-item {
  display: flex;
  align-items: center;
  padding: 20px 25px;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.vavoom-order-item:hover {
  background: #f8f9fa;
  border-radius: 8px;
}

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

.vavoom-order-thumbnail {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 15px;
  flex-shrink: 0;
}

.vavoom-order-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vavoom-order-info {
  flex: 1;
}

.vavoom-order-name {
  font-weight: 600;
  color: #495057;
  margin-bottom: 5px;
  line-height: 1.4;
}

.vavoom-order-price {
  color: #f95251;
  font-weight: 600;
  font-size: 16px;
}

.vavoom-order-date {
  color: #6c757d;
  font-size: 14px;
  margin-top: 5px;
}

/* 주문 상태 스타일 */
.vavoom-order-status {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  min-width: 80px;
}

.vavoom-order-status.pending {
  background: #fff3cd;
  color: #856404;
}

.vavoom-order-status.processing {
  background: #d1ecf1;
  color: #0c5460;
}

.vavoom-order-status.shipped {
  background: #d4edda;
  color: #155724;
}

.vavoom-order-status.completed {
  background: #d4edda;
  color: #155724;
}

/* 빠른 액션 버튼들 */
.vavoom-quick-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 25px;
}

.vavoom-quick-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 20px;
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  color: #495057;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.vavoom-quick-action-btn:hover {
  border-color: #f95251;
  color: #f95251;
  transform: translateY(-2px);
  text-decoration: none;
}

.vavoom-quick-action-btn .badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #dc3545;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vavoom-quick-action-btn:hover .badge {
  animation: bounce 0.5s ease-in-out;
}

@keyframes bounce {
  0%,
  20%,
  60%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  80% {
    transform: translateY(-5px);
  }
}

/* 빈 주문 상태 링크 스타일 */
.vavoom-recent-orders a:hover {
  background: #0056b3 !important;
  text-decoration: none !important;
}

/* ===== 주문 카드 반응형 스타일 ===== */
/* 태블릿 (768px-1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
  .vavoom-order-card {
    padding: 18px;
    border-radius: 10px;
  }

  .vavoom-order-header {
    gap: 12px;
    margin-bottom: 16px;
  }

  .vavoom-order-header > div {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .vavoom-order-number {
    font-size: 14px;
  }

  .vavoom-order-date {
    font-size: 12px;
  }

  .vavoom-order-status {
    padding: 6px 14px;
    font-size: 12px;
  }

  .vavoom-order-items {
    margin-bottom: 16px;
  }

  .vavoom-order-item {
    gap: 12px;
    padding: 12px 0;
  }

  .vavoom-item-thumbnail {
    width: 60px;
    height: 60px;
  }

  .vavoom-item-name {
    font-size: 14px;
  }

  .vavoom-item-details {
    font-size: 12px;
  }

  .vavoom-order-footer {
    gap: 12px;
  }

  .vavoom-order-actions {
    gap: 8px;
  }

  .vavoom-order-action {
    padding: 8px 16px;
    font-size: 13px;
  }
}

/* 모바일 (max-width: 768px) */
@media (max-width: 768px) {
  .vavoom-order-card {
    padding: 16px;
    border-radius: 8px;
  }

  .vavoom-order-header {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    margin-bottom: 16px;
  }

  .vavoom-order-header > div {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .vavoom-order-number {
    font-size: 14px;
    font-weight: 600;
  }

  .vavoom-order-date {
    font-size: 12px;
    color: #6c757d;
  }

  .vavoom-order-status {
    align-self: flex-start;
    padding: 6px 12px;
    font-size: 12px;
  }

  .vavoom-order-items {
    margin-bottom: 16px;
  }

  .vavoom-order-item {
    gap: 12px;
    padding: 12px 0;
    align-items: center;
  }

  .vavoom-item-thumbnail {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    flex-shrink: 0;
  }

  .vavoom-item-info {
    flex: 1;
    min-width: 0;
  }

  .vavoom-item-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.3;
  }

  .vavoom-item-details {
    font-size: 12px;
    color: #6c757d;
  }

  .vavoom-item-price {
    text-align: right;
    flex-shrink: 0;
  }

  .vavoom-item-price-current {
    font-size: 14px;
    font-weight: 600;
  }

  .vavoom-order-footer {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .vavoom-order-total {
    font-size: 15px;
    text-align: center;
    padding: 8px;
    border-radius: 6px;
  }

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

  .vavoom-order-action {
    flex: 1;
    padding: 10px;
    font-size: 13px;
    text-align: center;
    border-radius: 6px;
    text-decoration: none;
  }
}

/* 초소형 화면 (max-width: 480px) */
@media (max-width: 480px) {
  .vavoom-order-card {
    padding: 14px;
    border-radius: 6px;
  }

  .vavoom-order-header {
    gap: 10px;
    margin-bottom: 14px;
  }

  .vavoom-order-number {
    font-size: 13px;
  }

  .vavoom-order-date {
    font-size: 11px;
  }

  .vavoom-order-status {
    padding: 5px 10px;
    font-size: 11px;
  }

  .vavoom-order-items {
    margin-bottom: 14px;
  }

  .vavoom-order-item {
    gap: 10px;
    padding: 10px 0;
  }

  .vavoom-item-thumbnail {
    width: 45px;
    height: 45px;
    border-radius: 5px;
  }

  .vavoom-item-name {
    font-size: 13px;
    margin-bottom: 3px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .vavoom-item-details {
    font-size: 11px;
  }

  .vavoom-item-price-current {
    font-size: 13px;
  }

  .vavoom-order-footer {
    gap: 10px;
  }

  .vavoom-order-total {
    font-size: 14px;
    padding: 6px;
  }

  .vavoom-order-actions {
    flex-direction: column;
    gap: 6px;
  }

  .vavoom-order-action {
    padding: 8px;
    font-size: 12px;
  }
}

/* 반응형 - 대시보드 */
@media (max-width: 768px) {
  .vavoom-user-info {
    padding: 20px 15px;
  }

  .vavoom-user-name {
    font-size: 20px;
  }

  .vavoom-quick-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .vavoom-order-item {
    padding: 15px;
  }
  .vavoom-recent-orders h3 {
    padding: 15px;
  }

  .vavoom-order-thumbnail {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .vavoom-order-info {
    margin-bottom: 10px;
  }

  .vavoom-quick-actions {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .vavoom-quick-stats {
    grid-template-columns: 1fr;
  }

  .vavoom-stat-value {
    font-size: 18px;
  }

  .vavoom-withdrawal-container h3 {
    font-size: 18px;
  }
}

/* ===== 기존 대시보드 섹션 스타일 (제거된 부분 복구) ===== */

/* 대시보드 컨테이너 */
.vavoom-dashboard-container {
  max-width: 1200px;
  margin: 0 auto;
}

.vavoom-stat-value {
  font-size: 20px;
}

.vavoom-stat-item {
  padding: 8px;
}

.vavoom-order-name {
  font-size: 14px;
}

.vavoom-order-price {
  font-size: 12px;
}

.vavoom-order-date {
  font-size: 10px;
}

.vavoom-dashboard-container h2 {
  margin: 0 0 30px 0;
  color: #495057;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}

/* 대시보드 그리드 */
.vavoom-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 30px;
}

/* 대시보드 카드 */
.vavoom-dashboard-card {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.vavoom-dashboard-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.vavoom-dashboard-card h3 {
  margin: 0 0 20px 0;
  color: #495057;
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vavoom-dashboard-card h3 .icon {
  font-size: 22px;
  color: #007bff;
}

/* 웰컴 메시지 */
.vavoom-welcome-section {
  text-align: center;
  margin-bottom: 40px;
  padding: 40px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 16px;
}

.vavoom-welcome-title {
  margin: 0 0 12px 0;
  font-size: 32px;
  font-weight: 700;
}

.vavoom-welcome-subtitle {
  margin: 0;
  font-size: 18px;
  opacity: 0.9;
}

/* 통계 위젯 */
.vavoom-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
}

.vavoom-stat-item {
  text-align: center;
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
}

.vavoom-stat-item:hover {
  border-color: #f95251;
  background: #ffffff;
}

.vavoom-stat-value {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #010101;
  margin-bottom: 8px;
}

.vavoom-stat-label {
  font-size: 14px;
  color: #6c757d;
  font-weight: 500;
}

/* 빠른 액션 */
.vavoom-quick-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.vavoom-quick-action-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: #ffffff;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  color: #495057;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.vavoom-quick-action-btn:hover {
  border-color: #007bff;
  background: #f0f8ff;
  color: #007bff;
  text-decoration: none;
  transform: translateY(-2px);
}

.vavoom-quick-action-btn .icon {
  font-size: 20px;
  color: #007bff;
}

/* 최근 활동 */
.vavoom-recent-activity {
  margin-top: 20px;
}

.vavoom-activity-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vavoom-activity-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f8f9fa;
}

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

.vavoom-activity-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #6c757d;
  flex-shrink: 0;
}

.vavoom-activity-content {
  flex: 1;
  min-width: 0;
}

.vavoom-activity-title {
  margin: 0 0 4px 0;
  font-size: 14px;
  font-weight: 600;
  color: #495057;
}

.vavoom-activity-desc {
  margin: 0;
  font-size: 12px;
  color: #6c757d;
}

/* ===== 포인트 섹션 스타일 ===== */

/* 포인트 컨테이너 */
.vavoom-points-container {
  max-width: 900px;
  margin: 0 auto;
}

.vavoom-points-container h2 {
  margin: 0 0 30px 0;
  color: #495057;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}

/* 포인트 잔액 카드 */
.vavoom-balance-card {
  background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
  color: white;
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.vavoom-balance-label {
  margin: 0 0 12px 0;
  font-size: 18px;
  opacity: 0.9;
}

.vavoom-balance-amount {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.vavoom-balance-currency {
  font-size: 24px;
  margin-left: 8px;
}

/* 포인트 내역 */
.vavoom-point-history {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.vavoom-point-history h3 {
  margin: 0 0 24px 0;
  color: #495057;
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vavoom-point-history h3 .icon {
  font-size: 22px;
  color: #007bff;
}

/* 포인트 아이템 */
.vavoom-point-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid #f8f9fa;
}

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

.vavoom-point-info {
  flex: 1;
  min-width: 0;
}

.vavoom-point-title {
  margin: 0 0 4px 0;
  font-size: 16px;
  font-weight: 600;
  color: #495057;
}

.vavoom-point-desc {
  margin: 0;
  font-size: 14px;
  color: #6c757d;
}

.vavoom-point-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.vavoom-point-date {
  font-size: 12px;
  color: #6c757d;
}

.vavoom-point-amount {
  font-size: 18px;
  font-weight: 700;
  min-width: 80px;
  text-align: right;
}

.vavoom-point-amount.positive {
  color: #28a745;
}

.vavoom-point-amount.negative {
  color: #dc3545;
}

.vavoom-point-amount::before {
  content: attr(data-sign);
}

/* 포인트 페이지네이션 */
.vavoom-point-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}

.vavoom-page-btn {
  padding: 8px 12px;
  border: 1px solid #e9ecef;
  background: #ffffff;
  color: #495057;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.vavoom-page-btn:hover {
  border-color: #007bff;
  background: #f0f8ff;
  color: #007bff;
  text-decoration: none;
}

.vavoom-page-btn.current {
  background: #007bff;
  color: white;
  border-color: #007bff;
}

.vavoom-page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* 빈 상태 */
.vavoom-empty-points {
  text-align: center;
  padding: 60px 20px;
  color: #6c757d;
}

.vavoom-empty-points .icon {
  font-size: 64px;
  margin-bottom: 16px;
  opacity: 0.5;
}

.vavoom-empty-points h3 {
  margin: 0 0 8px 0;
  font-size: 20px;
  color: #495057;
}

.vavoom-empty-points p {
  margin: 0;
  font-size: 16px;
}

/* 반응형 - 대시보드 */
@media (max-width: 768px) {
  .vavoom-dashboard-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .vavoom-welcome-section {
    padding: 30px 16px;
  }

  .vavoom-welcome-title {
    font-size: 24px;
  }

  .vavoom-welcome-subtitle {
    font-size: 16px;
  }

  .vavoom-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .vavoom-stat-value {
    font-size: 24px;
  }

  .vavoom-quick-actions {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .vavoom-activity-item {
    align-items: flex-start;
  }
}

/* 반응형 - 포인트 */
@media (max-width: 768px) {
  .vavoom-balance-card {
    padding: 24px 16px;
  }

  .vavoom-balance-amount {
    font-size: 36px;
  }

  .vavoom-balance-currency {
    font-size: 18px;
  }

  .vavoom-point-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .vavoom-point-meta {
    align-self: flex-end;
    gap: 12px;
  }

  .vavoom-point-amount {
    min-width: auto;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .vavoom-stats-grid {
    grid-template-columns: 1fr;
  }

  .vavoom-point-pagination {
    flex-wrap: wrap;
  }

  .vavoom-balance-amount {
    font-size: 28px;
  }
}

/* ===== 리뷰 섹션 스타일 ===== */
@media (max-width: 768px) {
  .vavoom-account-container {
    padding: 0 0px;
  }

  .vavoom-account-container h2 {
    font-size: 24px;
  }

  .vavoom-profile-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  .vavoom-avatar-circle {
    width: 80px;
    height: 80px;
    font-size: 28px;
  }

  .vavoom-profile-name {
    font-size: 20px;
  }

  .vavoom-profile-meta {
    justify-content: center;
  }

  .vavoom-social-providers {
    flex-direction: column;
  }

  .vavoom-social-provider {
    min-width: auto;
  }

  .vavoom-form-actions {
    flex-direction: column;
    align-items: center;
  }

  .vavoom-withdrawal-btn {
    width: 100%;
  }

  .vavoom-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .vavoom-account-card h3 {
    font-size: 18px;
  }

  .vavoom-profile-name {
    font-size: 18px;
  }

  .vavoom-form-row input[type="text"],
  .vavoom-form-row input[type="email"],
  .vavoom-form-row input[type="password"],
  .vavoom-form-row .vavoom-readonly {
    font-size: 16px;
    padding: 10px 12px;
  }
}

/* ===== 리뷰 섹션 스타일 ===== */

/* 리뷰 컨테이너 */
.vavoom-reviews-container {
  max-width: 100%;
}

.vavoom-reviews-header {
  text-align: start;
  margin-bottom: 30px;
}

.vavoom-reviews-header h2 {
  margin: 0;
  color: #495057;
  font-size: 24px !important;
  font-weight: 700;
}

.vavoom-reviews-subtitle {
  margin: 8px 0 0 0;
  color: #6c757d;
  font-size: 16px;
}

/* 리뷰 탭 네비게이션 */
.vavoom-reviews-tabs {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  margin-bottom: 30px;
}

.vavoom-review-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 15px 25px;
  background: #ffffff;
  border: 2px solid #e9ecef;
  border-radius: 16px;
  color: #495057;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  min-width: 140px;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.vavoom-review-tab:hover {
  background: #f8f9fa;
  border-color: #f95251;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.vavoom-review-tab.active {
  border-color: #f95251;
  transform: translateY(-2px);
}

.vavoom-review-tab .tab-icon {
  font-size: 18px;
}

.vavoom-review-tab .tab-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #dc3545;
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 12px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  animation: pulse-badge 2s infinite;
}

.vavoom-review-tab .tab-count {
  color: inherit;
  opacity: 0.8;
  font-size: 14px;
}

@keyframes pulse-badge {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* 탭 컨텐츠 */
.vavoom-review-tab-content {
  display: none;
}

.vavoom-review-tab-content.active {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

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

/* 리뷰 리스트 */
.vavoom-reviews-list {
  display: grid;
  gap: 20px;
}

/* 리뷰 카드 */
.vavoom-review-card {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* 상품 정보 섹션 */
.vavoom-review-product {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.product-thumbnail {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  flex: 1;
  min-width: 0;
}

.product-name {
  margin: 0 0 8px 0;
  font-size: 16px !important;
  font-weight: 600;
  line-height: 1.4;
}

.product-name a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-name a:hover {
  color: #f95251;
  text-decoration: none;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #6c757d;
}

.product-meta span {
  display: inline-flex;
  align-items: center;
}

.purchase-date {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* 리뷰 평점 */
.review-rating {
  display: flex;
  align-items: center;
  gap: 1px;
  margin-bottom: 8px;
}

.review-rating .star {
  font-size: 16px;
  color: #ffc107;
}

.review-rating .star.empty {
  color: #e9ecef;
}

.rating-text {
  font-size: 14px;
  font-weight: 600;
  color: #495057;
}

.review-date {
  font-size: 14px;
  color: #6c757d;
}

/* 마감 기한 정보 - 인라인 스타일 */
.deadline-info.inline {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  margin-left: 8px;
}

.deadline-info.inline.normal {
  background: #e3f2fd;
  color: #1565c0;
}

.deadline-info.inline.warning {
  background: #fff3cd;
  color: #856404;
}

.deadline-info.inline.urgent {
  background: #ffebee;
  color: #c62828;
  animation: urgent-pulse 2s infinite;
}

.deadline-info.inline.expired {
  background: #f5f5f5;
  color: #757575;
}

.deadline-info.inline small {
  opacity: 0.8;
  font-weight: normal;
  margin-left: 2px;
}

@keyframes urgent-pulse {
  0%,
  100% {
    background: #f8d7da;
  }
  50% {
    background: #f5c6cb;
  }
}

.deadline-icon {
  font-size: 16px;
}

.deadline-date {
  margin-left: auto;
  opacity: 0.8;
}

/* 포인트 정보 */
.vavoom-review-points {
  margin: 16px 0;
}

.points-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 12px;
}

.points-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.points-details {
  flex: 1;
}

.points-title {
  font-size: 14px;
  font-weight: 600;
  color: #495057;
  margin-bottom: 6px;
}

.points-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.point-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #495057;
}

.point-item strong {
  color: #f95251;
  font-weight: 700;
}
/* 적립된 포인트 */
.earned-points {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 8px 12px;
  border: 2px solid #f8f8f8;
  border-radius: 8px;
  font-size: 14px;
}

.earned-points .points-icon {
  font-size: 16px;
}

.earned-points strong {
  color: #28a745;
}

/* 리뷰 내용 */
.vavoom-review-content {
  margin: 16px 0;
}

.review-text {
  font-size: 15px;
  line-height: 1.6;
  color: #495057;
  background: #f8f9fa;
  padding: 16px;
  border-radius: 12px;
}

/* 액션 버튼 */
.vavoom-review-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

.vavoom-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.vavoom-btn.small {
  padding: 8px 16px;
  font-size: 13px;
}

.vavoom-btn.primary {
  background: #f95251;
  color: white;
  min-width: 160px;
}

.vavoom-btn.secondary {
  background: #f95251;
  color: white;
}

.vavoom-btn.secondary:hover {
  background: #f95251;
  color: white;
  text-decoration: none;
}

.vavoom-btn.disabled {
  background: #e9ecef;
  color: #6c757d;
  cursor: not-allowed;
  opacity: 0.6;
}

.vavoom-btn.disabled:hover {
  background: #e9ecef;
  transform: none;
  box-shadow: none;
}

.btn-icon {
  font-size: 16px;
}

/* 반응형 디자인 - 리뷰 섹션 */
@media (max-width: 768px) {
  .vavoom-reviews-header h2 {
    font-size: 24px;
  }

  .vavoom-reviews-subtitle {
    font-size: 14px;
  }

  .vavoom-reviews-tabs {
    flex-direction: column;
    gap: 10px;
    padding: 0 10px;
  }

  .vavoom-review-tab {
    min-width: auto;
    padding: 12px 20px;
    font-size: 15px;
  }

  .vavoom-review-card {
    padding: 20px;
  }

  .vavoom-review-product {
    flex-direction: column;
    gap: 12px;
  }

  .product-thumbnail {
    align-self: center;
    width: 100px;
    height: 100px;
  }

  .product-meta {
    flex-direction: column;
    gap: 8px;
  }

  .points-info {
    flex-direction: column;
    gap: 8px;
  }

  .points-list {
    flex-direction: column;
    gap: 0;
  }

  .vavoom-review-actions {
    justify-content: center;
  }

  .vavoom-btn {
    flex: 1;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .vavoom-review-card {
    padding: 16px;
  }

  .product-name {
    font-size: 16px;
  }

  .deadline-info,
  .points-info {
    padding: 12px;
  }

  .vavoom-empty-icon {
    font-size: 48px;
  }

  .vavoom-empty-state h3 {
    font-size: 18px;
  }

  .vavoom-empty-state p {
    font-size: 14px;
  }
}

/* ===== 주소록 (Address List) 섹션 ===== */
.vavoom-address-container {
  /* max-width: 1200px; /* 기존 .vavoom-account-container 와 유사하게 설정하거나 필요에 따라 조정 */
  /* margin: 0 auto; */
  /* padding: 20px; /* 기존 .vavoom-account-container 와 유사하게 설정 */
}

.vavoom-address-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e9ecef;
}

.vavoom-address-header h2 {
  margin: 0;
  font-size: 22px; /* 기존 h2보다 약간 작게, 또는 탭 제목과 일관성 있게 */
  font-weight: 600;
  color: #343a40;
}

.vavoom-address-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.vavoom-address-card {
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 20px;
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.vavoom-address-card:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.vavoom-address-card.default-address {
  border-left: 4px solid #f95251; /* 강조 색상 */
  background-color: #fffaf8; /* 약간 다른 배경색 */
}

.address-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.address-type-badge {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  color: #fff;
  display: inline-block;
}

.address-type-badge.billing {
  background-color: #007bff;
} /* 파란색 계열 */
.address-type-badge.shipping {
  background-color: #28a745;
} /* 초록색 계열 */
.address-type-badge.additional {
  background-color: #6c757d;
} /* 회색 계열 */

.default-badge {
  background-color: #f95251; /* 주요 강조 색상 */
  color: white;
  font-size: 11px;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.address-card-body {
  margin-bottom: 15px;
  flex-grow: 1;
}

.address-card-body .recipient-name strong {
  font-size: 16px;
  font-weight: 600;
  color: #343a40;
  display: block;
  margin-bottom: 8px;
}

.address-card-body .address-details {
  font-size: 14px;
  color: #495057;
  line-height: 1.6;
  margin-bottom: 8px;
}
.address-card-body .address-details .postcode {
  font-weight: 500;
}

.address-card-body .recipient-phone {
  font-size: 14px;
  color: #495057;
}

.address-card-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-top: auto; /* 카드의 맨 아래에 액션 버튼들을 위치시킴 */
  padding-top: 15px;
  border-top: 1px solid #f1f3f5; /* 구분선 */
}

.address-card-actions .vavoom-btn-text {
  font-size: 13px;
  padding: 6px 10px;
  text-decoration: none;
  color: #007bff;
  transition: color 0.2s ease, background-color 0.2s ease;
  border-radius: 6px;
}
.address-card-actions .vavoom-btn-text:hover {
  color: #0056b3;
  background-color: #e9f2ff;
}
.address-card-actions .delete-address-btn {
  color: #dc3545;
}
.address-card-actions .delete-address-btn:hover {
  color: #a71d2a;
  background-color: #fbebed;
}

/* 빈 상태 (주소 없을 때) */
.vavoom-empty-state {
  text-align: center;
  padding: 40px 20px;
  background-color: #f8f9fa;
  border-radius: 12px;
  border: 1px dashed #dee2e6;
}

.vavoom-empty-state .empty-icon {
  font-size: 48px; /* 아이콘 크기 증가 */
  color: #adb5bd;
  margin-bottom: 20px;
  display: block;
}

.vavoom-empty-state h3 {
  font-size: 20px;
  font-weight: 600;
  color: #495057;
  margin-bottom: 10px;
}

.vavoom-empty-state p {
  font-size: 15px;
  color: #6c757d;
  margin-bottom: 25px;
}

.vavoom-empty-state .vavoom-btn.primary {
  padding: 12px 25px; /* 버튼 크기 조정 */
}

/* 주소 추가/수정 모달 */
#vavoom-address-modal.vavoom-modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
  overflow-y: auto;

  /* 부드러운 등장을 위한 전환 효과 */
  background-color: rgba(0, 0, 0, 0); /* 초기 배경은 투명 */
  visibility: hidden;
  opacity: 0;
  transition: background-color 0.3s ease, visibility 0s 0.3s, opacity 0.3s ease;
}

#vavoom-address-modal.vavoom-modal-wrapper.active {
  background-color: rgba(0, 0, 0, 0.6); /* 활성화 시 배경 어둡게 */
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

#vavoom-address-modal .vavoom-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9998; /* 컨텐츠보다 뒤에 위치 */
  cursor: pointer;
}

#vavoom-address-modal .vavoom-modal-content {
  max-width: 550px; /* 모달 너비 조정 */
  width: 100%; /* 모바일에서는 너비 꽉 채움 */
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  padding: 0; /* 내부에서 패딩 관리 */
  position: relative; /* 내부 요소 기준 */
  z-index: 10000; /* backdrop보다 위에 오도록 */
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 40px); /* 화면 높이 넘어가지 않도록, 패딩 고려 */

  /* 추가: 부드러운 등장 효과 */
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

#vavoom-address-modal.vavoom-modal-wrapper.active .vavoom-modal-content {
  transform: translateY(0);
  opacity: 1;
}

#vavoom-address-modal .vavoom-modal-header {
  padding: 20px 25px;
  border-bottom: 1px solid #e9ecef;
  flex-shrink: 0; /* 헤더 크기 고정 */
}

#vavoom-address-modal .vavoom-modal-header #address-modal-title {
  font-size: 20px;
  font-weight: 600;
  color: #343a40;
  margin: 0;
}

#vavoom-address-modal .vavoom-modal-close {
  font-size: 28px;
  color: #6c757d;
  opacity: 0.8;
}
#vavoom-address-modal .vavoom-modal-close:hover {
  opacity: 1;
}

#vavoom-address-modal .vavoom-modal-body {
  padding: 25px;
  overflow-y: auto; /* 내용이 길 경우 본문만 스크롤 */
  flex-grow: 1; /* 가능한 공간 채우도록 */
}

#vavoom-address-modal .vavoom-form-row {
  margin-bottom: 20px; /* 폼 행 간 간격 */
}

#vavoom-address-modal .vavoom-form-row label {
  font-size: 14px; /* 기존 스타일과 유사하게 */
  font-weight: 500; /* 약간 부드럽게 */
  color: #495057;
  margin-bottom: 6px; /* 레이블과 입력 필드 사이 간격 */
}

/* 입력 필드 및 버튼 그룹 스타일은 기존 .vavoom-form-row input, .vavoom-input-group 스타일을 따르도록 함 */
/* 필요시 여기에 추가/덮어쓰기 */
#vavoom-address-modal #find_postcode_btn {
  /* 기존 .vavoom-btn.secondary.small 스타일 사용 */
  height: auto; /* 입력 필드 높이와 맞추기 위해 */
  line-height: normal;
  padding: 10px 15px; /* 입력 필드 패딩과 유사하게 */
}
#vavoom-address-modal .vavoom-input-group input[readonly] {
  background-color: #e9ecef; /* 읽기 전용 필드 배경색 명확히 */
  cursor: not-allowed;
}
#vavoom-address-modal input[type="tel"] {
  /* tel 타입도 다른 text input과 스타일 일관성 유지 */
}

#vavoom-address-modal .vavoom-checkbox-label {
  font-size: 14px;
  color: #495057;
}
#vavoom-address-modal .vavoom-checkbox-label input[type="checkbox"] {
  margin-right: 8px;
}

#vavoom-address-modal .vavoom-modal-actions {
  padding: 20px 25px;
  border-top: 1px solid #e9ecef;
  background-color: #f8f9fa; /* 액션 영역 배경색 */
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  border-bottom-left-radius: 16px; /* 모달 하단 모서리 둥글게 */
  border-bottom-right-radius: 16px;
  flex-shrink: 0; /* 푸터 크기 고정 */
}

/* 반응형 스타일 */
@media (max-width: 768px) {
  .vavoom-address-list {
    grid-template-columns: 1fr; /* 모바일에서는 한 줄에 하나씩 */
    gap: 15px;
  }
  .vavoom-address-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .vavoom-address-header h2 {
    font-size: 20px;
  }
  .vavoom-address-header .add-new-address-btn {
    width: 100%; /* 모바일에서 버튼 너비 전체 */
  }

  #vavoom-address-modal .vavoom-modal-content {
    /* margin: 20px; /* wrapper에서 패딩으로 처리 */
    /* max-width: calc(100% - 40px); */
    max-height: calc(100vh - 40px); /* 화면 높이에서 상하 패딩 제외 */
  }
  #vavoom-address-modal .vavoom-modal-header #address-modal-title {
    font-size: 18px;
  }
  #vavoom-address-modal .vavoom-modal-actions {
    flex-direction: column;
  }
  #vavoom-address-modal .vavoom-modal-actions .vavoom-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .vavoom-address-card {
    padding: 15px;
  }
  .address-card-body .recipient-name strong {
    font-size: 15px;
  }
  .address-card-body .address-details,
  .address-card-body .recipient-phone {
    font-size: 13px;
  }
  .address-card-actions .vavoom-btn-text {
    font-size: 12px;
    padding: 5px 8px;
  }

  #vavoom-address-modal .vavoom-modal-body,
  #vavoom-address-modal .vavoom-modal-header,
  #vavoom-address-modal .vavoom-modal-actions {
    padding: 20px;
  }
  #vavoom-address-modal .vavoom-modal-content {
    border-radius: 8px; /* 모바일에서는 약간 작은 둥근 모서리 */
  }
}

/* Address Tab Simplification Styles */
.vavoom-billing-address-details {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  margin-top: 15px;
}

.address-detail-item {
  display: flex;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

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

.address-detail-item .detail-label {
  flex: 0 0 80px; /* 80px 고정 너비 */
  font-weight: 600;
  color: #555;
  font-size: 14px;
}

.address-detail-item .detail-value {
  color: #333;
  font-size: 15px;
}

.address-actions-footer {
  text-align: right;
  margin-top: 20px;
}

.vavoom-address-container .vavoom-empty-state {
  text-align: center;
  padding: 40px 20px;
  background-color: #fcfcfc;
  border: 2px dashed #e0e0e0;
  border-radius: 8px;
  margin-top: 15px;
}

/* 회원탈퇴 전용 CSS */
.vavoom-withdrawal-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.vavoom-withdrawal-header {
  text-align: center;
  margin-bottom: 30px;
  border-bottom: 1px solid #e9ecef;
  padding-bottom: 20px;
}

.vavoom-withdrawal-header h2 {
  font-size: 24px;
  color: #333;
  margin: 0;
  font-weight: 600;
}

.vavoom-thank-you-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  text-align: center;
  border: 1px solid #dee2e6;
}

.vavoom-thank-you-section h3 {
  font-size: 18px;
  color: #333;
  margin: 0 0 12px 0;
  line-height: 1.6;
}

.vavoom-thank-you-section strong {
  color: #f95251;
  font-weight: 700;
}

.vavoom-thank-you-section p {
  color: #666;
  margin: 0 0 16px 0;
  font-size: 14px;
  line-height: 1.5;
}

.vavoom-contact-btn {
  background: #f95251;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.vavoom-contact-btn:hover {
  background: #e03131;
  transform: translateY(-1px);
}

.vavoom-notice-section {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  border-left: 4px solid #ffc107;
}

.vavoom-notice-section h3 {
  font-size: 16px;
  color: #856404;
  margin: 0 0 16px 0;
  font-weight: 600;
}

.vavoom-notice-list {
  margin: 0;
  padding-left: 0;
  color: #856404;
  list-style: none;
}

.vavoom-notice-list li {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.6;
  position: relative;
  padding-left: 20px;
}

.vavoom-notice-list li:before {
  content: "⚠️";
  position: absolute;
  left: 0;
  top: 2px;
}

.vavoom-withdrawal-container h3 {
  font-size: 24px !important;
}

.vavoom-notice-list strong {
  color: #d9480f;
  font-weight: 600;
}

.vavoom-withdrawal-form {
  margin-top: 30px;
}

.vavoom-form-group {
  margin-bottom: 20px;
}

.vavoom-form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
  font-size: 14px;
}

.vavoom-checkbox-label {
  display: flex !important;
  align-items: center;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
}

.vavoom-checkbox-label input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}

.vavoom-checkmark {
  position: relative;
  height: 22px;
  width: 22px;
  background-color: #f1f3f5;
  border: 1px solid #ced4da;
  border-radius: 4px;
  margin-right: 12px;
  transition: all 0.2s;
}

.vavoom-checkbox-label:hover .vavoom-checkmark {
  border-color: #fa5252;
}

.vavoom-checkbox-label input:checked ~ .vavoom-checkmark {
  background-color: #fa5252;
  border-color: #fa5252;
}

.vavoom-checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 11px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.vavoom-checkbox-label input:checked ~ .vavoom-checkmark:after {
  display: block;
}

.vavoom-select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ced4da;
  border-radius: 6px;
  background-color: white;
  font-size: 14px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%236c757d%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-13%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2013l128%20128c3.6%203.6%207.8%205.4%2013%205.4s9.4-1.8%2013-5.4l128-128c3.6-3.6%205.4-7.8%205.4-13%200-5-1.8-9.4-5.4-13z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 10px;
}

.vavoom-form-actions {
  text-align: center;
  margin-top: 30px;
}

.vavoom-withdrawal-btn {
  width: 100%;
  max-width: 280px;
  padding: 14px;
  background-color: #adb5bd;
  border: none;
  border-radius: 6px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: not-allowed;
  transition: all 0.3s;
}

.vavoom-withdrawal-btn:not(:disabled) {
  background-color: #dc3545;
  cursor: pointer;
}

.vavoom-withdrawal-btn:not(:disabled):hover {
  background-color: #c82333;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(220, 53, 69, 0.3);
}
