/**
 * WBK Login - Default Template Styles (Toss-inspired)
 *
 * @package WBK_Login
 * @since   1.0.0
 */

/* ==========================================================================
   CSS Variables
   ========================================================================== */

:root {
    --wbk-primary-color: #ddecca;
    --wbk-primary-hover: #c8e0b5;
    --wbk-primary-text: #1a1a1a;
    --wbk-secondary-color: #6b7684;
    --wbk-success-color: #00c471;
    --wbk-error-color: #f04452;
    --wbk-warning-color: #ff9f00;
    --wbk-info-color: #3182f6;
    --wbk-border-color: #e5e8eb;
    --wbk-bg-color: #f7f8fa;
    --wbk-text-color: #191f28;
    --wbk-text-muted: #8b95a1;
    --wbk-border-radius: 16px;
    --wbk-border-radius-sm: 12px;
    --wbk-border-radius-lg: 24px;
    --wbk-input-height: 52px;
    --wbk-transition: 0.15s ease;
    --wbk-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    --wbk-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   Global Input Styles (Toss-inspired)
   ========================================================================== */

.wbk-mypage input[type="text"],
.wbk-mypage input[type="email"],
.wbk-mypage input[type="password"],
.wbk-mypage input[type="tel"],
.wbk-mypage input[type="number"],
.wbk-mypage input[type="url"],
.wbk-mypage input[type="search"],
.wbk-mypage input[type="date"],
.wbk-mypage select,
.wbk-mypage textarea,
.wbk-wc-content input[type="text"],
.wbk-wc-content input[type="email"],
.wbk-wc-content input[type="password"],
.wbk-wc-content input[type="tel"],
.wbk-wc-content input[type="number"],
.wbk-wc-content input[type="url"],
.wbk-wc-content input[type="search"],
.wbk-wc-content input[type="date"],
.wbk-wc-content select,
.wbk-wc-content textarea {
    display: block;
    width: 100%;
    height: var(--wbk-input-height);
    padding: 0 18px;
    font-size: 16px;
    line-height: 1.5;
    color: var(--wbk-text-color);
    background-color: var(--wbk-bg-color);
    border: 2px solid transparent;
    border-radius: var(--wbk-border-radius);
    transition: all var(--wbk-transition);
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.wbk-mypage textarea,
.wbk-wc-content textarea {
    height: auto;
    min-height: 120px;
    padding: 16px 18px;
    resize: vertical;
    line-height: 1.6;
}

.wbk-mypage select,
.wbk-wc-content select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238b95a1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 48px;
    cursor: pointer;
}

.wbk-mypage input::placeholder,
.wbk-mypage textarea::placeholder,
.wbk-wc-content input::placeholder,
.wbk-wc-content textarea::placeholder {
    color: var(--wbk-text-muted);
}

.wbk-mypage input:hover,
.wbk-mypage select:hover,
.wbk-mypage textarea:hover,
.wbk-wc-content input:hover,
.wbk-wc-content select:hover,
.wbk-wc-content textarea:hover {
    background-color: #f0f2f5;
}

.wbk-mypage input:focus,
.wbk-mypage select:focus,
.wbk-mypage textarea:focus,
.wbk-wc-content input:focus,
.wbk-wc-content select:focus,
.wbk-wc-content textarea:focus {
    outline: none;
    background-color: #fff;
    border-color: var(--wbk-primary-color);
    box-shadow: 0 0 0 4px rgba(221, 236, 202, 0.3);
}

.wbk-mypage input:disabled,
.wbk-mypage select:disabled,
.wbk-mypage textarea:disabled,
.wbk-wc-content input:disabled,
.wbk-wc-content select:disabled,
.wbk-wc-content textarea:disabled {
    background-color: #f0f2f5;
    color: var(--wbk-text-muted);
    cursor: not-allowed;
}

/* Checkbox & Radio */
.wbk-mypage input[type="checkbox"],
.wbk-mypage input[type="radio"],
.wbk-wc-content input[type="checkbox"],
.wbk-wc-content input[type="radio"] {
    width: 20px;
    height: 20px;
    padding: 0;
    margin: 0;
    border: 2px solid var(--wbk-border-color);
    background-color: #fff;
    cursor: pointer;
    vertical-align: middle;
}

.wbk-mypage input[type="checkbox"],
.wbk-wc-content input[type="checkbox"] {
    border-radius: 6px;
}

.wbk-mypage input[type="radio"],
.wbk-wc-content input[type="radio"] {
    border-radius: 50%;
}

.wbk-mypage input[type="checkbox"]:checked,
.wbk-mypage input[type="radio"]:checked,
.wbk-wc-content input[type="checkbox"]:checked,
.wbk-wc-content input[type="radio"]:checked {
    background-color: var(--wbk-primary-color);
    border-color: var(--wbk-primary-color);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.wbk-mypage input[type="checkbox"]:focus,
.wbk-mypage input[type="radio"]:focus,
.wbk-wc-content input[type="checkbox"]:focus,
.wbk-wc-content input[type="radio"]:focus {
    box-shadow: 0 0 0 4px rgba(221, 236, 202, 0.3);
}

/* ==========================================================================
   Form Container
   ========================================================================== */

.wbk-form-container {
    max-width: 420px;
    margin: 40px auto;
    padding: 40px 32px;
    background: #fff;
    border-radius: var(--wbk-border-radius-lg);
    box-shadow: var(--wbk-shadow-lg);
}

.wbk-form-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--wbk-text-color);
    margin: 0 0 8px;
    text-align: center;
    letter-spacing: -0.02em;
}

.wbk-form-description {
    margin-bottom: 32px;
    color: var(--wbk-text-muted);
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
}

/* ==========================================================================
   Form Elements
   ========================================================================== */

.wbk-form {
    margin: 0;
}

.wbk-form-field {
    margin-bottom: 24px;
}

.wbk-form-field label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--wbk-text-color);
    letter-spacing: -0.01em;
}

.wbk-form-field .wbk-required {
    color: var(--wbk-error-color);
    margin-left: 2px;
}

.wbk-input,
.wbk-select,
.wbk-textarea {
    display: block;
    width: 100%;
    height: var(--wbk-input-height);
    padding: 0 18px;
    font-size: 16px;
    line-height: 1.5;
    color: var(--wbk-text-color);
    background-color: var(--wbk-bg-color);
    border: 2px solid transparent;
    border-radius: var(--wbk-border-radius);
    transition: all var(--wbk-transition);
    box-sizing: border-box;
}

.wbk-input::placeholder,
.wbk-textarea::placeholder {
    color: var(--wbk-text-muted);
}

.wbk-textarea {
    height: auto;
    min-height: 120px;
    padding: 16px 18px;
    resize: vertical;
}

.wbk-input:hover,
.wbk-select:hover,
.wbk-textarea:hover {
    background-color: #f0f2f5;
}

.wbk-input:focus,
.wbk-select:focus,
.wbk-textarea:focus {
    outline: none;
    background-color: #fff;
    border-color: var(--wbk-primary-color);
    box-shadow: 0 0 0 4px rgba(221, 236, 202, 0.3);
}

.wbk-input:disabled,
.wbk-select:disabled,
.wbk-textarea:disabled {
    background-color: #f0f2f5;
    color: var(--wbk-text-muted);
    cursor: not-allowed;
}

.wbk-input.wbk-error,
.wbk-select.wbk-error,
.wbk-textarea.wbk-error {
    border-color: var(--wbk-error-color);
    background-color: #fff;
}

/* Select */
.wbk-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238b95a1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 48px;
}

/* Checkbox & Radio */
.wbk-form-field-checkbox label,
.wbk-form-field-radio label {
    display: inline-flex;
    align-items: center;
    font-weight: 400;
    cursor: pointer;
}

.wbk-form-field-checkbox input,
.wbk-form-field-radio input {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    accent-color: var(--wbk-primary-color);
}

.wbk-checkbox-group,
.wbk-radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wbk-checkbox-item,
.wbk-radio-item {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    background: var(--wbk-bg-color);
    border-radius: var(--wbk-border-radius-sm);
    cursor: pointer;
    transition: background-color var(--wbk-transition);
}

.wbk-checkbox-item:hover,
.wbk-radio-item:hover {
    background: #f0f2f5;
}

.wbk-checkbox-item input,
.wbk-radio-item input {
    margin-right: 12px;
}

/* Field Hint */
.wbk-field-hint {
    margin-top: 8px;
    font-size: 13px;
    color: var(--wbk-text-muted);
    line-height: 1.5;
}

.wbk-field-error {
    margin-top: 8px;
    font-size: 13px;
    color: var(--wbk-error-color);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ==========================================================================
   Password Strength
   ========================================================================== */

.wbk-password-strength {
    margin-top: 12px;
    height: 6px;
    background: var(--wbk-bg-color);
    border-radius: 3px;
    overflow: hidden;
}

.wbk-password-strength-bar {
    height: 100%;
    width: 0;
    border-radius: 3px;
    transition: width var(--wbk-transition), background-color var(--wbk-transition);
}

.wbk-password-strength.weak .wbk-password-strength-bar {
    width: 33%;
    background: var(--wbk-error-color);
}

.wbk-password-strength.medium .wbk-password-strength-bar {
    width: 66%;
    background: var(--wbk-warning-color);
}

.wbk-password-strength.strong .wbk-password-strength-bar {
    width: 100%;
    background: var(--wbk-success-color);
}

.wbk-password-strength-text {
    margin-top: 6px;
    font-size: 13px;
    color: var(--wbk-text-muted);
}

/* ==========================================================================
   Verification Field
   ========================================================================== */

.wbk-verification-wrapper {
    display: flex;
    gap: 12px;
}

.wbk-verification-wrapper .wbk-input {
    flex: 1;
}

.wbk-verify-btn {
    flex-shrink: 0;
    white-space: nowrap;
    height: var(--wbk-input-height);
    padding: 0 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--wbk-primary-text);
    background: var(--wbk-primary-color);
    border: none;
    border-radius: var(--wbk-border-radius);
    cursor: pointer;
    transition: background-color var(--wbk-transition);
}

.wbk-verify-btn:hover {
    background: var(--wbk-primary-hover);
}

.wbk-verification-status {
    display: flex;
    align-items: center;
    margin-top: 10px;
    padding: 10px 14px;
    font-size: 13px;
    border-radius: var(--wbk-border-radius-sm);
}

.wbk-verification-status.verified {
    color: var(--wbk-success-color);
    background: rgba(0, 196, 113, 0.1);
}

.wbk-verification-status.pending {
    color: var(--wbk-warning-color);
    background: rgba(255, 159, 0, 0.1);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.wbk-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: var(--wbk-input-height);
    padding: 0 28px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    border-radius: var(--wbk-border-radius);
    cursor: pointer;
    transition: all var(--wbk-transition);
    letter-spacing: -0.01em;
}

.wbk-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.wbk-button-primary {
    background: var(--wbk-primary-color);
    color: var(--wbk-primary-text);
}

.wbk-button-primary:hover:not(:disabled) {
    background: var(--wbk-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(221, 236, 202, 0.4);
}

.wbk-button-primary:active:not(:disabled) {
    transform: translateY(0);
}

.wbk-button-secondary {
    background: var(--wbk-bg-color);
    color: var(--wbk-text-color);
}

.wbk-button-secondary:hover:not(:disabled) {
    background: #e8eaed;
}

.wbk-button-outline {
    background: transparent;
    color: var(--wbk-text-color);
    border: 2px solid var(--wbk-border-color);
}

.wbk-button-outline:hover:not(:disabled) {
    border-color: var(--wbk-primary-color);
    background: rgba(221, 236, 202, 0.1);
}

.wbk-form-submit {
    margin-top: 32px;
}

.wbk-form-submit .wbk-button {
    width: 100%;
    height: 56px;
}

/* ==========================================================================
   Messages
   ========================================================================== */

.wbk-message {
    padding: 16px 20px;
    margin-bottom: 24px;
    border-radius: var(--wbk-border-radius);
    font-size: 14px;
    line-height: 1.6;
    border: none;
}

.wbk-message ul {
    margin: 0;
    padding-left: 20px;
}

.wbk-message li {
    margin-bottom: 4px;
}

.wbk-message li:last-child {
    margin-bottom: 0;
}

.wbk-message-success {
    background: rgba(0, 196, 113, 0.1);
    color: #00a05e;
}

.wbk-message-error {
    background: rgba(240, 68, 82, 0.1);
    color: #e53e4d;
}

.wbk-message-warning {
    background: rgba(255, 159, 0, 0.1);
    color: #cc7f00;
}

.wbk-message-info {
    background: rgba(49, 130, 246, 0.1);
    color: #2970dd;
}

/* ==========================================================================
   Form Links
   ========================================================================== */

.wbk-form-links {
    margin-top: 28px;
    padding-top: 24px;
    text-align: center;
    font-size: 14px;
    color: var(--wbk-text-muted);
    border-top: 1px solid var(--wbk-border-color);
}

.wbk-form-links .wbk-link {
    color: var(--wbk-text-color);
    text-decoration: none;
    margin: 0 10px;
    font-weight: 500;
    transition: color var(--wbk-transition);
}

.wbk-form-links .wbk-link:hover {
    color: var(--wbk-primary-hover);
}

.wbk-form-links button.wbk-link {
    background: none;
    border: none;
    cursor: pointer;
    font-size: inherit;
    padding: 0;
}

.wbk-form-divider {
    color: var(--wbk-border-color);
}

/* ==========================================================================
   Logged In View
   ========================================================================== */

.wbk-logged-in-container {
    text-align: center;
}

.wbk-user-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 32px;
}

.wbk-user-avatar {
    margin-bottom: 20px;
}

.wbk-user-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: var(--wbk-shadow);
}

.wbk-user-name {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--wbk-text-color);
    letter-spacing: -0.02em;
}

.wbk-user-email {
    font-size: 14px;
    color: var(--wbk-text-muted);
    margin: 0;
}

.wbk-user-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.wbk-user-actions .wbk-button {
    min-width: 140px;
}

/* ==========================================================================
   Profile Page
   ========================================================================== */

.wbk-profile-container {
    max-width: 560px;
}

.wbk-profile-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--wbk-border-color);
}

.wbk-profile-header .wbk-user-avatar img {
    width: 100px;
    height: 100px;
}

.wbk-profile-section {
    margin-bottom: 40px;
}

.wbk-profile-section:last-child {
    margin-bottom: 0;
}

.wbk-section-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 24px;
    color: var(--wbk-text-color);
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wbk-section-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 18px;
    background: var(--wbk-primary-color);
    border-radius: 2px;
}

.wbk-profile-card {
    background: var(--wbk-bg-color);
    border-radius: var(--wbk-border-radius);
    padding: 24px;
    margin-bottom: 16px;
}

.wbk-profile-card:last-child {
    margin-bottom: 0;
}

.wbk-profile-card-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--wbk-text-muted);
    margin: 0 0 8px;
}

.wbk-profile-card-value {
    font-size: 16px;
    font-weight: 500;
    color: var(--wbk-text-color);
    margin: 0;
}

.wbk-logout-section {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--wbk-border-color);
}

/* ==========================================================================
   Loading State
   ========================================================================== */

.wbk-loading {
    position: relative;
    pointer-events: none;
}

.wbk-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    border-radius: inherit;
}

.wbk-button.wbk-loading {
    color: transparent;
}

.wbk-button.wbk-loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--wbk-text-color);
    border-top-color: transparent;
    border-radius: 50%;
    animation: wbk-spin 0.8s linear infinite;
}

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

/* ==========================================================================
   Tel Split
   ========================================================================== */

.wbk-tel-split-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.wbk-tel-part {
    flex: 1;
    min-width: 0;
    text-align: center;
}

.wbk-tel-separator {
    color: var(--wbk-text-muted);
    font-weight: 500;
    font-size: 18px;
}

.wbk-tel-split-wrapper .wbk-btn {
    flex-shrink: 0;
    margin-left: 8px;
}

/* ==========================================================================
   Social Login (Optional)
   ========================================================================== */

.wbk-social-login {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--wbk-border-color);
}

.wbk-social-divider {
    text-align: center;
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--wbk-text-muted);
}

.wbk-social-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.wbk-social-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid var(--wbk-border-color);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--wbk-transition);
}

.wbk-social-btn:hover {
    border-color: var(--wbk-primary-color);
    box-shadow: var(--wbk-shadow);
}

/* ==========================================================================
   Mypage Layout
   ========================================================================== */

.wbk-mypage {
    margin: 40px auto;
    padding: 0 20px;
}

.wbk-mypage-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 32px;
    background: #fff;
    border-radius: var(--wbk-border-radius-lg);
    box-shadow: var(--wbk-shadow-lg);
    margin-bottom: 24px;
}

.wbk-mypage-header .wbk-user-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.wbk-mypage-header .wbk-user-name {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 4px;
    color: var(--wbk-text-color);
    letter-spacing: -0.02em;
}

.wbk-mypage-header .wbk-user-email {
    font-size: 14px;
    color: var(--wbk-text-muted);
    margin: 0;
}

.wbk-mypage-body {
    display: flex;
    gap: 24px;
}

/* 사이드바 */
.wbk-mypage-sidebar {
    width: 240px;
    flex-shrink: 0;
}

.wbk-mypage-nav {
    background: #fff;
    border-radius: var(--wbk-border-radius-lg);
    box-shadow: var(--wbk-shadow-lg);
    padding: 12px;
    position: sticky;
    top: 100px;
}

.wbk-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    color: var(--wbk-text-color);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--wbk-border-radius-sm);
    transition: all var(--wbk-transition);
    margin-bottom: 4px;
}

.wbk-nav-item:last-child {
    margin-bottom: 0;
}

.wbk-nav-item:hover {
    background: var(--wbk-bg-color);
}

.wbk-nav-item.active {
    background: var(--wbk-primary-color);
    font-weight: 600;
}

.wbk-nav-item .wbk-nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: var(--wbk-text-muted);
}

.wbk-nav-item.active .wbk-nav-icon {
    color: var(--wbk-text-color);
}

.wbk-nav-item .wbk-nav-icon svg {
    width: 20px;
    height: 20px;
}

.wbk-nav-logout {
    margin-top: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--wbk-border-color);
}

.wbk-nav-logout:hover {
    color: var(--wbk-error-color);
}

.wbk-nav-logout:hover .wbk-nav-icon {
    color: var(--wbk-error-color);
}

/* 모바일 탭 (데스크톱에서 숨김) */
.wbk-mypage-mobile-tabs {
    display: none;
}

/* 콘텐츠 영역 */
.wbk-mypage-content {
    flex: 1;
    min-width: 0;
}

/* 사이드바 없을 때 */
.wbk-mypage:not(.wbk-mypage-with-sidebar) .wbk-mypage-content {
    max-width: 600px;
    margin: 0 auto;
}

.wbk-mypage:not(.wbk-mypage-with-sidebar) .wbk-mypage-body {
    display: block;
}

/* 프로필 폼 컨테이너 */
.wbk-profile-form-container {
    background: #fff;
    border-radius: var(--wbk-border-radius-lg);
    box-shadow: var(--wbk-shadow-lg);
    padding: 32px;
}

.wbk-mypage-with-sidebar .wbk-profile-section {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--wbk-border-color);
}

.wbk-mypage-with-sidebar .wbk-profile-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* 우커머스 콘텐츠 래퍼 */
.wbk-wc-content {
    background: #fff;
    border-radius: var(--wbk-border-radius-lg);
    box-shadow: var(--wbk-shadow-lg);
    padding: 32px;
}

/* ==========================================================================
   Mypage Responsive
   ========================================================================== */

@media screen and (max-width: 768px) {
    .wbk-mypage {
        margin: 20px auto;
        padding: 0 16px;
    }

    .wbk-mypage-header {
        padding: 24px;
        flex-direction: column;
        text-align: center;
    }

    .wbk-mypage-header .wbk-user-avatar img {
        width: 72px;
        height: 72px;
    }

    .wbk-mypage-header .wbk-user-name {
        font-size: 20px;
    }

    .wbk-mypage-body {
        flex-direction: column;
    }

    /* 사이드바 숨기기 */
    .wbk-mypage-sidebar {
        display: none;
    }

    /* 모바일 탭 표시 */
    .wbk-mypage-mobile-tabs {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 8px;
        margin-bottom: 16px;
        -webkit-overflow-scrolling: touch;
    }

    .wbk-mypage-mobile-tabs::-webkit-scrollbar {
        display: none;
    }

    .wbk-mobile-tab {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        min-width: 72px;
        padding: 12px 16px;
        background: #fff;
        border-radius: var(--wbk-border-radius);
        box-shadow: var(--wbk-shadow);
        text-decoration: none;
        color: var(--wbk-text-muted);
        font-size: 12px;
        font-weight: 500;
        white-space: nowrap;
        transition: all var(--wbk-transition);
    }

    .wbk-mobile-tab.active {
        background: var(--wbk-primary-color);
        color: var(--wbk-text-color);
    }

    .wbk-mobile-tab .wbk-nav-icon {
        display: flex;
    }

    .wbk-mobile-tab .wbk-nav-icon svg {
        width: 20px;
        height: 20px;
    }

    .wbk-profile-form-container,
    .wbk-wc-content {
        padding: 24px;
        border-radius: var(--wbk-border-radius);
    }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media screen and (max-width: 480px) {
    .wbk-form-container {
        margin: 20px 16px;
        padding: 32px 24px;
        border-radius: var(--wbk-border-radius);
    }

    .wbk-form-title {
        font-size: 22px;
    }

    .wbk-input,
    .wbk-select,
    .wbk-textarea {
        height: 48px;
        font-size: 15px;
    }

    .wbk-button {
        height: 48px;
    }

    .wbk-form-submit .wbk-button {
        height: 52px;
    }

    .wbk-user-actions {
        flex-direction: column;
        width: 100%;
    }

    .wbk-user-actions .wbk-button {
        width: 100%;
    }

    .wbk-verification-wrapper {
        flex-direction: column;
    }

    .wbk-verify-btn {
        width: 100%;
    }

    .wbk-tel-split-wrapper {
        flex-wrap: wrap;
    }

    .wbk-tel-part {
        flex: 1 1 calc(33% - 8px);
    }

    .wbk-tel-split-wrapper .wbk-btn {
        width: 100%;
        margin-left: 0;
        margin-top: 12px;
        flex-basis: 100%;
    }
}
