
.editor-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    height: 100dvh;
    z-index: var(--z-modal);
    display: none;
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(4px);
}

.editor-modal-overlay.active {
    display: block;
}

.editor-modal-overlay > .editor-modal-container {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-height: calc(100vh - 32px);
    max-height: calc(100dvh - 32px);
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border: var(--border-width-thick) solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

@media (min-width: 769px) {
    .editor-modal-overlay > .editor-modal-container {
        inset: 24px;
    }
}

.editor-modal-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    height: 100dvh;
    z-index: var(--z-modal);
    display: none;
}

.editor-modal-wrapper.show {
    display: block;
}

.editor-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(4px);
}

.editor-modal-container {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-height: calc(100vh - 32px);
    max-height: calc(100dvh - 32px);
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border: var(--border-width-thick) solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

@media (min-width: 769px) {
    .editor-modal-container {
        inset: 24px;
    }
}

.editor-modal-header {
    display: flex;
    flex-direction: column;
    background: var(--color-cream);
    border-bottom: var(--border-width) solid var(--border-color);
    flex-shrink: 0;
}

.modal-header-row1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.modal-header-type {
    display: flex;
    align-items: center;
    gap: 6px;
}

.modal-header-type img,
.modal-header-type svg {
    width: 16px;
    height: 16px;
}

.modal-header-type span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-color);
}

.editor-modal-header .editor-modal-close {
    width: 28px;
    height: 28px;
    padding: 4px;
    background: transparent;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.editor-modal-header .editor-modal-close:hover {
    background: rgba(0,0,0,0.1);
}

.editor-modal-header .editor-modal-close svg {
    width: 18px;
    height: 18px;
    stroke: var(--text-color);
}

.modal-header-row2 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    min-height: 48px;
    gap: 12px;
}

.modal-title-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
    text-align: center;
}

.modal-title-edit-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 0;
}

.modal-title-edit-wrap input[type="text"] {
    flex: 1;
    min-width: 0;
    padding: 8px 12px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--color-white);
    color: var(--text-color);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.modal-title-edit-wrap input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(244, 230, 55, 0.3);
}

.modal-title-edit-wrap input::placeholder {
    color: #999;
    font-weight: 400;
}

.modal-allow-copy-wrap {
    display: flex;
    align-items: center;
    margin-left: auto;
    flex-shrink: 0;
}

.allow-copy-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    user-select: none;
    padding: 3px 8px;
    border-radius: 20px;
    transition: all 0.2s;
}

.allow-copy-toggle input[type="checkbox"] {
    display: none;
}

.allow-copy-slider {
    position: relative;
    width: 32px;
    height: 18px;
    background: #ccc;
    border-radius: 18px;
    transition: background 0.3s;
    flex-shrink: 0;
}

.allow-copy-slider::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.3s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.allow-copy-toggle input:checked + .allow-copy-slider {
    background: #0078ff;
}

.allow-copy-toggle input:checked + .allow-copy-slider::after {
    transform: translateX(14px);
}

.allow-copy-text {
    font-size: 11px;
    font-weight: 500;
    color: #888;
    white-space: nowrap;
    transition: color 0.2s;
}

.allow-copy-toggle input:checked ~ .allow-copy-text {
    color: #0078ff;
}

.editor-modal-title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.editor-modal-type-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--color-white);
    border: var(--border-width) solid var(--border-color);
    border-radius: var(--radius-xs);
    font-size: 13px;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.editor-modal-type-badge.type-2d {
    background: var(--color-sky);
}

.editor-modal-type-badge.type-3d {
    background: var(--color-lavender);
}

.editor-modal-type-badge img {
    width: 18px;
    height: 18px;
}

.editor-modal-title {
    font-size: 1.1rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.editor-modal-title-input {
    flex: 1;
    padding: 10px 14px;
    font-size: 15px;
    font-weight: 700;
    border: var(--border-width) solid var(--border-color);
    border-radius: var(--radius-xs);
    background: var(--color-white);
    box-shadow: inset 2px 2px 0 rgba(0,0,0,0.05);
    min-width: 150px;
}

.editor-modal-title-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(244, 230, 55, 0.3);
}

.editor-modal-close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: var(--border-width) solid var(--border-color);
    border-radius: var(--radius-sm);
    background: var(--color-white);
    cursor: pointer;
    font-size: 24px;
    font-weight: 700;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.editor-modal-close:hover {
    background: var(--color-peach);
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow);
}

.editor-modal-close:active {
    transform: translate(1px, 1px);
    box-shadow: 1px 1px 0 var(--border-color);
}

.editor-modal-body {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: var(--bg-color);
}

.editor-modal-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.editor-modal-loading {
    position: absolute;
    inset: 0;
    display: none; /* 기본 숨김 */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: var(--bg-color);
    z-index: 10;
}

.editor-modal-loading.show {
    display: flex;
}

.editor-modal-loading .spinner {
    width: 48px;
    height: 48px;
    border-width: 4px;
}

.editor-modal-loading-text {
    font-weight: 700;
    color: var(--text-muted);
}

.editor-modal-error {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 40px;
    background: var(--bg-color);
    text-align: center;
}

.editor-modal-error-icon {
    font-size: 64px;
}

.editor-modal-error-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.editor-modal-error-desc {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.editor-save-dialog {
    position: fixed;
    inset: 0;
    z-index: calc(var(--z-modal) + 10);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(26, 26, 26, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.editor-save-dialog.show {
    opacity: 1;
    visibility: visible;
}

.editor-save-dialog-content {
    background: var(--color-white);
    border: var(--border-width-thick) solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 32px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    transform: scale(0.9) translateY(20px);
    transition: transform var(--transition);
}

.editor-save-dialog.show .editor-save-dialog-content {
    transform: scale(1) translateY(0);
}

.editor-save-dialog-icon {
    font-size: 56px;
    margin-bottom: 16px;
}

.editor-save-dialog-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.editor-save-dialog-message {
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.editor-save-dialog-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (min-width: 480px) {
    .editor-save-dialog-actions {
        flex-direction: row;
        justify-content: center;
    }
}

.editor-save-dialog-btn {
    flex: 1;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 700;
    border: var(--border-width) solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.editor-save-dialog-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow);
}

.editor-save-dialog-btn.primary {
    background: var(--primary-color);
}

.editor-save-dialog-btn.secondary {
    background: var(--color-white);
}

.editor-save-dialog-btn.danger {
    background: var(--color-peach);
}

.guest-save-dialog {
    position: fixed;
    inset: 0;
    z-index: calc(var(--z-modal) + 10);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(26, 26, 26, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.guest-save-dialog.show {
    opacity: 1;
    visibility: visible;
}

.guest-save-dialog-content {
    background: var(--color-mint);
    border: var(--border-width-thick) solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 32px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    transform: scale(0.9) translateY(20px);
    transition: transform var(--transition);
}

.guest-save-dialog.show .guest-save-dialog-content {
    transform: scale(1) translateY(0);
}

.guest-save-dialog-icon {
    font-size: 56px;
    margin-bottom: 16px;
}

.guest-save-dialog-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.guest-save-dialog-message {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.6;
}

.guest-save-dialog-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.guest-save-dialog-btn {
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 700;
    border: var(--border-width) solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
    background: var(--color-white);
}

.guest-save-dialog-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow);
}

.guest-save-dialog-btn.primary {
    background: var(--primary-color);
}

.guest-save-dialog-btn.success {
    background: var(--secondary-color);
}

.like-users-modal {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(26, 26, 26, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.like-users-modal.show {
    opacity: 1;
    visibility: visible;
}

.like-users-modal-content {
    background: var(--color-white);
    border: var(--border-width-thick) solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    max-width: 400px;
    width: 100%;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.like-users-modal-header {
    padding: 20px 24px;
    background: var(--color-cream);
    border-bottom: var(--border-width) solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.like-users-modal-title {
    font-size: 1.1rem;
    font-weight: 700;
}

.like-users-modal-close {
    width: 36px;
    height: 36px;
    border: var(--border-width) solid var(--border-color);
    border-radius: var(--radius-xs);
    background: var(--color-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all var(--transition-fast);
}

.like-users-modal-close:hover {
    background: var(--color-peach);
}

.like-users-modal-body {
    padding: 16px;
    overflow-y: auto;
    flex: 1;
}

.like-user-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: var(--radius-xs);
    transition: background var(--transition-fast);
}

.like-user-item:hover {
    background: var(--color-cream);
}

.like-user-avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-xs);
    border: 2px solid var(--border-color);
}

.like-user-name {
    font-weight: 700;
}

.comments-modal {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(26, 26, 26, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.comments-modal.show {
    opacity: 1;
    visibility: visible;
}

.comments-modal-content {
    background: var(--color-white);
    border: var(--border-width-thick) solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.comments-modal-header {
    padding: 20px 24px;
    background: var(--color-cream);
    border-bottom: var(--border-width) solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.comments-modal-title {
    font-size: 1.1rem;
    font-weight: 700;
}

.comments-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}

.comments-modal-footer {
    padding: 16px;
    border-top: var(--border-width) solid var(--border-color);
    background: var(--bg-color);
    display: flex;
    gap: 10px;
}

.comments-modal-footer textarea {
    flex: 1;
    padding: 12px;
    font-size: 14px;
    resize: none;
    min-height: 44px;
}

.comments-modal-footer button {
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 700;
}

.report-modal {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(26, 26, 26, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.report-modal.show {
    opacity: 1;
    visibility: visible;
}

.report-modal-content {
    background: var(--color-white);
    border: var(--border-width-thick) solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    max-width: 450px;
    width: 100%;
    overflow: hidden;
}

.report-modal-header {
    padding: 20px 24px;
    background: var(--color-peach);
    border-bottom: var(--border-width) solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.report-modal-title {
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.report-modal-body {
    padding: 24px;
}

.report-modal-footer {
    padding: 16px 24px;
    border-top: var(--border-width) solid var(--border-color);
    background: var(--bg-color);
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.contact-modal {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(26, 26, 26, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.contact-modal.show {
    opacity: 1;
    visibility: visible;
}

.contact-modal-content {
    background: var(--color-white);
    border: var(--border-width-thick) solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.contact-modal-header {
    padding: 20px 24px;
    background: var(--color-sky);
    border-bottom: var(--border-width) solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact-modal-body {
    padding: 24px;
}

.contact-modal-footer {
    padding: 16px 24px;
    border-top: var(--border-width) solid var(--border-color);
    background: var(--bg-color);
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.like-users-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(26, 26, 26, 0.7);
}

.like-users-modal-overlay.show {
    display: flex !important;
}

.like-users-modal-box {
    background: var(--color-white);
    border: var(--border-width-thick) solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    max-width: 400px;
    width: 100%;
    max-height: 70vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.like-users-modal-top {
    padding: 18px 20px;
    background: var(--color-cream);
    border-bottom: var(--border-width) solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.like-users-modal-top h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.like-users-modal-x {
    width: 32px;
    height: 32px;
    border: var(--border-width) solid var(--border-color);
    border-radius: var(--radius-xs);
    background: var(--color-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    transition: all var(--transition-fast);
    line-height: 1;
}

.like-users-modal-x:hover {
    background: var(--color-peach);
}

.like-users-modal-list {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
}

.like-users-modal-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--radius-xs);
    text-decoration: none;
    color: var(--text-color);
    transition: background var(--transition-fast);
}

.like-users-modal-user:hover {
    background: var(--color-cream);
}

.like-users-modal-avatar {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-xs);
    border: 2px solid var(--border-color);
    overflow: hidden;
    background: var(--color-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.like-users-modal-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.like-users-modal-info {
    flex: 1;
    min-width: 0;
}

.like-users-modal-name {
    font-weight: 700;
    font-size: 14px;
}

.like-users-modal-count {
    font-size: 12px;
    color: var(--text-muted);
}

.like-users-modal-loading,
.like-users-modal-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
    font-size: 14px;
}

.comments-modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.comments-modal-overlay.show { 
    display: flex !important; 
}

.comments-modal-box {
    background: var(--color-white);
    border: var(--border-width-thick) solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 480px;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.comments-modal-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border-bottom: var(--border-width) solid var(--border-color);
    background: var(--color-cream);
}

.comments-modal-top h3 { 
    margin: 0; 
    font-size: 16px; 
    font-weight: 700;
}

.comments-modal-x {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border: var(--border-width) solid var(--border-color);
    border-radius: var(--radius-xs);
    font-size: 18px;
    cursor: pointer;
    color: var(--text-muted);
    transition: all var(--transition-fast);
}

.comments-modal-x:hover {
    background: var(--primary-color);
    transform: translate(-1px, -1px);
    box-shadow: 2px 2px 0 var(--border-color);
}

.comments-modal-list {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0;
    min-height: 150px;
    max-height: 400px;
}

.comments-modal-loading,
.comments-modal-empty {
    padding: 40px 20px;
    text-align: center;
    color: var(--text-muted);
}

.comments-modal-input-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    border-top: var(--border-width) solid var(--border-color);
    background: var(--color-cream);
}

.comments-modal-input {
    flex: 1;
    padding: 10px 12px;
    border: var(--border-width) solid var(--border-color);
    border-radius: var(--radius-xs);
    font-size: 14px;
    resize: none;
    outline: none;
    background: var(--color-white);
    min-height: 40px;
    max-height: 80px;
}

.comments-modal-input:focus {
    border-color: var(--accent-color);
    box-shadow: 2px 2px 0 var(--border-color);
}

.comments-modal-submit {
    padding: 10px 16px;
    background: var(--primary-color);
    color: var(--text-color);
    border: var(--border-width) solid var(--border-color);
    border-radius: var(--radius-xs);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 2px 2px 0 var(--border-color);
    white-space: nowrap;
}

.comments-modal-submit:hover { 
    transform: translate(-1px, -1px);
    box-shadow: 3px 3px 0 var(--border-color);
}

.comments-modal-submit:active {
    transform: translate(1px, 1px);
    box-shadow: 1px 1px 0 var(--border-color);
}

.comment-modal-item {
    padding: 10px 16px;
}

.comment-modal-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.comment-modal-avatar {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-xs);
    border: var(--border-width) solid var(--border-color);
    background: var(--color-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
    overflow: hidden;
}

.comment-modal-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-modal-author {
    font-weight: 700;
    font-size: 13px;
    color: var(--text-color);
    text-decoration: none;
}

.comment-modal-author:hover { 
    color: var(--accent-color); 
}

.comment-modal-time {
    font-size: 11px;
    color: var(--text-muted);
    margin-left: auto;
}

.comment-modal-content {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-color);
    margin-left: 42px;
}

.comment-modal-actions {
    margin-left: 42px;
    margin-top: 6px;
    display: flex;
    gap: 12px;
}

.comment-modal-action {
    font-size: 12px;
    color: var(--text-muted);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    font-weight: 600;
}

.comment-modal-action:hover { 
    color: var(--accent-color); 
}

.comment-modal-action.liked { 
    color: #e74c3c; 
}

.comment-modal-action.delete { 
    color: #e74c3c; 
}

.comment-modal-action.delete:hover { 
    color: #c0392b; 
}

.comment-mention {
    color: var(--accent-color);
    font-weight: 600;
}

.confirm-modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.confirm-modal-overlay.show {
    display: flex !important;
}

.confirm-modal-box {
    background: var(--color-white);
    border: var(--border-width-thick) solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 24px;
    width: 100%;
    max-width: 320px;
    text-align: center;
    animation: confirmModalIn 0.2s ease-out;
}

@keyframes confirmModalIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.confirm-modal-icon {
    margin-bottom: 12px;
}

.confirm-modal-icon img {
    width: 48px;
    height: 48px;
}

.confirm-modal-message {
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-color);
    margin: 0 0 20px 0;
}

.confirm-modal-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.confirm-modal-btn {
    flex: 1;
    padding: 12px 20px;
    border: var(--border-width) solid var(--border-color);
    border-radius: var(--radius-xs);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 2px 2px 0 var(--border-color);
}

.confirm-modal-btn.cancel {
    background: var(--color-white);
    color: var(--text-color);
}

.confirm-modal-btn.cancel:hover {
    background: var(--color-cream);
}

.confirm-modal-btn.confirm {
    background: #e74c3c;
    color: white;
    border-color: #c0392b;
    box-shadow: 2px 2px 0 #c0392b;
}

.confirm-modal-btn.confirm:hover {
    background: #c0392b;
}

.confirm-modal-btn:active {
    transform: translate(1px, 1px);
    box-shadow: 1px 1px 0 var(--border-color);
}

.follow-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-modal);
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.follow-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.follow-modal-box {
    background: var(--card-bg);
    border: var(--border-width-thick) solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 400px;
    max-height: 70vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

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

.follow-modal-top h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.follow-modal-x {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: var(--radius-xs);
    transition: background var(--transition-fast);
}

.follow-modal-x:hover {
    background: var(--color-cream);
}

.follow-modal-list {
    overflow-y: auto;
    padding: 12px;
    flex: 1;
}

.follow-modal-loading {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
}

.follow-modal-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
    text-decoration: none;
    color: inherit;
}

.follow-modal-user:hover {
    background: var(--color-cream);
}

.follow-modal-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    border: var(--border-width) solid var(--border-color);
    overflow: hidden;
    background: var(--color-cream);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: var(--text-muted);
}

.follow-modal-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.follow-modal-avatar span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

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

.follow-modal-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.follow-modal-count {
    font-size: 12px;
    color: var(--text-muted);
    flex-shrink: 0;
}

.follow-modal-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
}

/* ===== 쇼핑 모달 공통 스타일 (editor.php 뷰어와 동일) ===== */

/* 모달 열릴 때 body 스크롤 방지 */
body.modal-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
    height: 100%;
}

.shop-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    height: 100dvh;
    z-index: 10000;
    display: none;
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(4px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.shop-modal-overlay.show {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.shop-modal-container {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-height: calc(100vh - 32px);
    max-height: calc(100dvh - 32px);
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border: var(--border-width-thick) solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

@media (min-width: 769px) {
    .shop-modal-container {
        inset: 24px;
    }
}

/* 작은 모달 (색상 선택 등) */
.shop-modal-container.modal-sm {
    position: relative;
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 420px;
    max-height: 85vh;
    max-height: 85dvh;
}

.shop-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--color-cream);
    border-bottom: var(--border-width) solid var(--border-color);
    flex-shrink: 0;
}

.shop-modal-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
}

.shop-modal-header-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.shop-modal-close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: var(--border-width) solid var(--border-color);
    border-radius: var(--radius-sm);
    background: var(--color-white);
    cursor: pointer;
    font-size: 24px;
    font-weight: 700;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.shop-modal-close:hover {
    background: var(--color-peach);
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow);
}

.shop-modal-close:active {
    transform: translate(1px, 1px);
    box-shadow: 1px 1px 0 var(--border-color);
}

.shop-modal-action-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: var(--border-width) solid var(--border-color);
    border-radius: var(--radius-sm);
    background: var(--color-white);
    cursor: pointer;
    font-size: 18px;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.shop-modal-action-btn:hover {
    background: var(--color-sky);
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow);
}

.shop-modal-body {
    flex: 1;
    position: relative;
    overflow: auto;
    background: var(--bg-color);
    padding: 16px;
}

.shop-modal-body.no-padding {
    padding: 0;
}

.shop-modal-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    padding: 12px 16px;
    background: var(--color-cream);
    border-top: var(--border-width) solid var(--border-color);
    flex-shrink: 0;
}

.shop-modal-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 40px 20px;
    color: var(--text-muted);
}

/* ===== 색상 선택 모달 (shop.php) ===== */
#colorModal .modal-color-preview {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

#colorModal .color-swatch-large {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    border: 3px solid var(--border-color);
    box-shadow: 4px 4px 0 var(--border-color);
}

#colorModal .color-swatch-large.transparent-bg {
    background-image: linear-gradient(45deg, #ddd 25%, transparent 25%),
                      linear-gradient(-45deg, #ddd 25%, transparent 25%),
                      linear-gradient(45deg, transparent 75%, #ddd 75%),
                      linear-gradient(-45deg, transparent 75%, #ddd 75%);
    background-size: 10px 10px;
    background-position: 0 0, 0 5px, 5px -5px, -5px 0px;
}

#colorModal .quantity-selector h4,
#colorModal .count-selector h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 12px;
    color: var(--text-muted);
}

#colorModal .quantity-options {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

#colorModal .qty-option {
    flex: 1;
    cursor: pointer;
}

#colorModal .qty-option input {
    display: none;
}

#colorModal .qty-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 8px;
    border: var(--border-width) solid #ddd;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

#colorModal .qty-option input:checked + .qty-card {
    border-color: var(--border-color);
    background: var(--color-cream);
}

#colorModal .qty-card.popular {
    position: relative;
}

#colorModal .qty-card.popular::before {
    content: '人気';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF6B6B;
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
}

#colorModal .qty-num {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

#colorModal .qty-price {
    font-size: 14px;
    color: var(--text-muted);
}

#colorModal .qty-stock {
    font-size: 11px;
    color: #4caf50;
    margin-top: 4px;
}

#colorModal .qty-stock.out {
    color: #f44336;
}

#colorModal .qty-option.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#colorModal .qty-option.disabled .qty-card {
    background: #f5f5f5;
}

#colorModal .count-selector {
    margin-bottom: 20px;
}

#colorModal .count-input {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

#colorModal .stock-info {
    text-align: center;
    font-size: 13px;
    color: #4caf50;
    margin-top: 10px;
}

#colorModal .stock-info.warning {
    color: #ff9800;
}

#colorModal .stock-info.out {
    color: #f44336;
}

#colorModal .count-btn {
    width: 40px;
    height: 40px;
    border: var(--border-width) solid var(--border-color);
    background: var(--color-white);
    border-radius: var(--radius-sm);
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.15s;
    box-shadow: var(--shadow-sm);
}

#colorModal .count-btn:hover {
    background: var(--primary-color);
}

#colorModal .count-btn:active {
    transform: scale(0.95);
}

#colorModal .count-input input {
    width: 60px;
    height: 40px;
    border: var(--border-width) solid #ddd;
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 18px;
    font-weight: 700;
}

#colorModal .modal-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: var(--bg-color);
    border-radius: var(--radius-sm);
    margin-bottom: 0;
}

#colorModal .modal-total span:first-child {
    font-size: 14px;
    color: var(--text-muted);
}

#colorModal .total-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-color);
}

#colorModal .btn-add-cart {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    border: var(--border-width-thick) solid var(--border-color);
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 4px 4px 0 var(--border-color);
    transition: all 0.15s;
}

#colorModal .btn-add-cart:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--border-color);
}

#colorModal .btn-add-cart:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--border-color);
}

#colorModal .btn-add-cart:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: 4px 4px 0 #999;
}

/* ===== 주문 상세 모달 (orders.php) ===== */
#orderModal .order-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: var(--color-cream);
    border-bottom: var(--border-width) solid var(--border-color);
}

#orderModal .order-detail-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: var(--radius-xs);
    font-size: 13px;
    font-weight: 700;
}

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

#orderModal .order-detail-status.status-paid {
    background: #d4edda;
    color: #155724;
}

#orderModal .order-detail-status.status-shipped {
    background: #cce5ff;
    color: #004085;
}

#orderModal .order-detail-status.status-delivered {
    background: #d1ecf1;
    color: #0c5460;
}

#orderModal .order-detail-status.status-cancelled {
    background: #f8d7da;
    color: #721c24;
}

#orderModal .order-detail-section {
    padding: 16px;
    border-bottom: var(--border-width) solid #eee;
}

#orderModal .order-detail-section:last-child {
    border-bottom: none;
}

#orderModal .order-detail-section h4 {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--text-color);
}

#orderModal .order-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
}

#orderModal .order-detail-row .label {
    color: var(--text-muted);
}

#orderModal .order-detail-row .value {
    font-weight: 600;
    color: var(--text-color);
}

#orderModal .order-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--bg-color);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
}

#orderModal .order-item:last-child {
    margin-bottom: 0;
}

#orderModal .order-item-color {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-xs);
    border: var(--border-width) solid var(--border-color);
    flex-shrink: 0;
}

#orderModal .order-item-info {
    flex: 1;
    min-width: 0;
}

#orderModal .order-item-name {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
}

#orderModal .order-item-details {
    font-size: 12px;
    color: var(--text-muted);
}

#orderModal .order-item-price {
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

#orderModal .order-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: var(--color-cream);
    border-radius: var(--radius-sm);
    margin-top: 12px;
}

#orderModal .order-total-row .label {
    font-size: 14px;
    color: var(--text-muted);
}

#orderModal .order-total-row .value {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-color);
}

#orderModal .order-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: var(--primary-color);
    border: var(--border-width) solid var(--border-color);
    border-radius: var(--radius-xs);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

#orderModal .order-action-btn:hover {
    transform: translate(-1px, -1px);
    box-shadow: var(--shadow);
}

#orderModal .order-action-btn.secondary {
    background: var(--color-white);
}

/* ===== 조립 가이드 모달 (orders.php) ===== */
#guideBody {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

#guideBody .guide-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 12px 16px;
    background: var(--color-white);
    border-bottom: var(--border-width) solid #eee;
    flex-shrink: 0;
    max-height: 120px;
    overflow-y: auto;
}

#guideBody .guide-tab {
    padding: 6px 12px;
    border: var(--border-width) solid #ddd;
    background: var(--color-white);
    border-radius: var(--radius-xs);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
    white-space: nowrap;
}

#guideBody .guide-tab:hover {
    border-color: var(--border-color);
    background: var(--color-cream);
}

#guideBody .guide-tab.active {
    border-color: var(--border-color);
    background: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

#guideBody .guide-tab .tab-count {
    color: var(--text-muted);
    font-weight: 400;
    margin-left: 4px;
}

#guideBody .guide-content {
    flex: 1;
    overflow: hidden;
    position: relative;
}

#guideBody .guide-3d-container {
    width: 100%;
    height: 100%;
    position: relative;
    background: #e8e8e0;
}

#guideBody .guide-3d-container canvas {
    display: block;
    width: 100%;
    height: 100%;
}

#guideBody .guide-layer-container {
    width: 100%;
    height: 100%;
    overflow: auto;
    background: #e8e8e0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

#guideBody .guide-layer-info {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 8px 12px;
    border-radius: var(--radius-xs);
    font-size: 13px;
    font-weight: 600;
    z-index: 10;
}

#guideBody .guide-stats-area {
    width: 100%;
    background: var(--color-cream);
    border-top: var(--border-width) solid #ddd;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-height: 180px;
    flex-shrink: 0;
}

/* ===== 리뷰 시스템 ===== */
.reviews-summary {
    padding: 12px 20px;
    border-bottom: 1px solid #e5e7eb;
    background: #fefce8;
}
.reviews-avg {
    display: flex;
    align-items: center;
    gap: 8px;
}
.reviews-avg-stars { font-size: 18px; }
.reviews-avg-num { font-weight: 700; font-size: 18px; color: #1a1a1a; }
.reviews-avg-count { font-size: 13px; color: #6b7280; }
.reviews-modal-loading,
.reviews-modal-empty {
    text-align: center;
    padding: 40px 20px;
    color: #9ca3af;
    font-size: 14px;
}

/* 리뷰 아이템 */
.review-item {
    padding: 16px 20px;
    border-bottom: 1px solid #f3f4f6;
}
.review-item:last-child { border-bottom: none; }
.review-header {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
}
.review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #FFE566;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: #1a1a1a;
    overflow: hidden;
    flex-shrink: 0;
}
.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.review-meta { flex: 1; min-width: 0; }
.review-author {
    font-weight: 600;
    font-size: 13px;
    color: #1a1a1a;
    text-decoration: none;
}
.review-author:hover { text-decoration: underline; }
.review-rating-time {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 2px;
}
.review-stars-sm { font-size: 13px; line-height: 1; }
.review-star { color: #d1d5db; }
.review-star.filled { color: #f59e0b; }
.review-time { font-size: 12px; color: #9ca3af; }
.review-delete-btn {
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 18px;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
}
.review-delete-btn:hover { color: #ef4444; }
.review-content {
    font-size: 14px;
    line-height: 1.6;
    color: #374151;
    word-break: break-word;
}
.review-photos {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}
.review-photos img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid #e5e7eb;
    transition: transform 0.15s;
}
.review-photos img:hover { transform: scale(1.05); }

/* 리뷰 작성 폼 */
.review-form-wrap {
    border-top: 2px solid #FFE566;
    background: #fffdf5;
}
.review-form-inner {
    padding: 16px 20px;
}
.review-form-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.review-form-label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}
.review-stars-input {
    font-size: 24px;
    line-height: 1;
}
.review-stars-input .review-star { transition: color 0.1s; }
.review-stars-input .review-star:hover { color: #f59e0b !important; }
.review-textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    min-height: 70px;
    outline: none;
    box-sizing: border-box;
}
.review-textarea:focus { border-color: #f59e0b; box-shadow: 0 0 0 2px rgba(245,158,11,0.15); }
.review-form-bottom {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}
.review-photo-label {
    font-size: 13px;
    color: #2563eb;
    cursor: pointer;
    font-weight: 600;
}
.review-photo-label:hover { text-decoration: underline; }
.review-photo-hint {
    font-size: 12px;
    color: #9ca3af;
    flex: 1;
}
.review-submit-btn {
    padding: 8px 20px;
    background: #FFE566;
    border: 2px solid #1a1a1a;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 2px 2px 0 #1a1a1a;
}
.review-submit-btn:hover { background: #ffd700; }
.review-submit-btn:active { box-shadow: 0 0 0 #1a1a1a; transform: translate(2px,2px); }
.review-photo-preview {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    flex-wrap: wrap;
}
.review-photo-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
}
.review-points-info {
    margin-top: 10px;
    padding: 8px 12px;
    background: #fef3c7;
    border-radius: 6px;
    font-size: 12px;
    color: #92400e;
}
