.powell-fs-page {
    min-height: 100vh;
    color: var(--ls-text);
}

.powell-fs-shell {
    width: min(var(--ls-width), calc(100% - 24px));
    margin: 0 auto;
    padding: 28px 0 56px;
}

.powell-fs-hero {
    margin-bottom: 20px;
}

.powell-fs-hero-main {
    background: var(--ls-bg-white);
    border: 1px solid var(--ls-border);
    border-radius: var(--ls-radius-xl);
    backdrop-filter: blur(18px);
}

.powell-fs-panel {
    background: var(--ls-bg-white);
    border: 1px solid var(--ls-border);
    border-radius: var(--ls-radius-xl);
    backdrop-filter: blur(18px);
}

.powell-fs-card {
    background: var(--ls-bg-white);
    border: 1px solid var(--ls-border);
    border-radius: var(--ls-radius-xl);
    backdrop-filter: blur(18px);
}

.powell-fs-detail-card {
    background: var(--ls-bg-white);
    border: 1px solid var(--ls-border);
    border-radius: var(--ls-radius-xl);
    backdrop-filter: blur(18px);
}

.powell-fs-side-card {
    background: var(--ls-bg-white);
    border: 1px solid var(--ls-border);
    border-radius: var(--ls-radius-xl);
    backdrop-filter: blur(18px);
}

.powell-fs-form-card {
    background: var(--ls-bg-white);
    border: 1px solid var(--ls-border);
    border-radius: var(--ls-radius-xl);
    backdrop-filter: blur(18px);
}

.powell-fs-upload-card {
    background: var(--ls-bg-white);
    border: 1px solid var(--ls-border);
    border-radius: var(--ls-radius-xl);
    backdrop-filter: blur(18px);
}

.powell-fs-empty-card {
    background: var(--ls-bg-white);
    border: 1px solid var(--ls-border);
    border-radius: var(--ls-radius-xl);
    backdrop-filter: blur(18px);
}

.powell-fs-hero-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 34px 36px;
}

.powell-fs-hero-copy {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.powell-fs-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
    flex: 0 0 auto;
}

.powell-fs-hero h1 {
    font-size: 28px;
    line-height: 1;
    letter-spacing: -0.03em;
}

.powell-fs-hero p {
    margin: 0;
    font-size: 15px;
    line-height: 1.9;
    color: var(--ls-text-muted);
    max-width: 760px;
}

.powell-fs-avatar {
    width: 64px;
    height: 64px;
    border-radius: var(--ls-radius-xl);
    object-fit: cover;
}

.powell-fs-avatar.is-fallback {
    display: grid;
    place-items: center;
    background: var(--ls-primary);
    color: #fff;
    font-size: 26px;
    font-weight: 800;
}

.powell-fs-empty-card h3 {
    display: block;
    margin: 0 0 6px;
    font-size: 20px;
}

.powell-fs-detail-copy h2 {
    display: block;
    margin: 0 0 6px;
    font-size: 20px;
}

.powell-fs-card h3 {
    display: block;
    margin: 0 0 6px;
    font-size: 20px;
}

.powell-fs-empty-card p {
    color: var(--ls-text-muted);
    font-size: 13px;
    line-height: 1.8;
}

.powell-fs-hint {
    color: var(--ls-text-muted);
    font-size: 13px;
    line-height: 1.8;
}

.powell-fs-upload-empty {
    color: var(--ls-text-muted);
    font-size: 13px;
    line-height: 1.8;
}

.powell-fs-mini-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid var(--ls-border);
    background: rgba(255, 255, 255, 0.86);
    color: var(--ls-secondary);
    height: 36px;
    padding: 0 14px;
    border-radius: var(--ls-radius-xl);
    font-size: 12px;
    transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}

.powell-fs-mini-link:hover {
    transform: translateY(-1px);
    background: var(--ls-primary-light);
    border-color: var(--ls-primary);
    color: var(--ls-primary);
}

.powell-fs-nav {
    display: grid;
    gap: 12px;
}

.powell-fs-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 2px 8px;
    border-radius: var(--ls-radius-sm);
    font-size: 11px;
    font-weight: 500;
    line-height: 18px;
}

.powell-fs-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 2px 8px;
    border-radius: var(--ls-radius-sm);
    font-size: 11px;
    font-weight: 500;
    line-height: 18px;
}

.powell-fs-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 2px 8px;
    border-radius: var(--ls-radius-sm);
    font-size: 11px;
    font-weight: 500;
    line-height: 18px;
}

.powell-fs-nav-item {
    font-size: 14px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(36, 26, 20, 0.08);
    color: var(--ls-text-muted);
    width: 100%;
    justify-content: flex-start;
    padding: 14px 16px;
    border-radius: var(--ls-radius-xl);
    font-weight: 700;
}

.powell-fs-manage-shell {
    display: grid;
    grid-template-columns: 248px minmax(0, 1fr);
    gap: 18px;
    margin-top: 18px;
    align-items: start;
}

.powell-fs-manage-sidebar {
    position: sticky;
    top: 92px;
}

.powell-fs-manage-sidebar-card {
    display: grid;
    gap: 18px;
}

.powell-fs-manage-sidebar-head strong {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
}

.powell-fs-manage-sidebar-head p {
    margin: 0;
    color: var(--ls-text-muted);
    font-size: 13px;
    line-height: 1.8;
}

.powell-fs-manage-content {
    min-width: 0;
    display: grid;
    gap: 18px;
}

.powell-fs-nav-item.is-active {
    background: var(--ls-primary);
    color: #fff;
}

.powell-fs-nav-item.is-disabled {
    opacity: 0.45;
    pointer-events: none;
}

.powell-fs-banner {
    padding: 18px 22px;
    border-radius: var(--ls-radius-xl);
    margin-bottom: 18px;
    border: 1px solid rgba(36, 26, 20, 0.08);
}

.powell-fs-banner.is-warm {
    background: rgba(241, 195, 91, 0.18);
}

.powell-fs-banner.is-muted {
    background: var(--ls-bg);
}

.powell-fs-banner strong {
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
}

.powell-fs-panel.powell-fs-store-panel {
    display: grid;
    gap: 18px;
    padding: 20px 24px;
}

.powell-fs-store-panel-head {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(36, 26, 20, 0.08);
}

.powell-fs-store-filter-group {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 12px 16px;
}

.powell-fs-store-filter-label {
    padding-top: 8px;
    color: var(--ls-text-muted);
    font-size: 13px;
    white-space: nowrap;
}

.powell-fs-store-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex: 1 1 0;
    gap: 8px;
}

.powell-fs-store-categories .powell-fs-chip {
    height: 34px;
    padding: 0 14px;
    border-radius: var(--ls-radius-lg);
    background: transparent;
    border-color: transparent;
    cursor: pointer;
    font-size: 14px;
}

.powell-fs-store-categories .powell-fs-chip:hover {
    background: rgba(36, 26, 20, 0.05);
    color: var(--ls-text);
}

.powell-fs-store-categories .powell-fs-chip.is-active {
    background: var(--ls-primary);
    color: #fff;
}

.powell-fs-store-panel-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.powell-fs-view-switch {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 4px;
    border-radius: var(--ls-radius-xl);
    background: rgba(36, 26, 20, 0.04);
    border: 1px solid rgba(36, 26, 20, 0.06);
    box-sizing: border-box;
}

.powell-fs-view-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: var(--ls-radius-lg);
    background: transparent;
    color: var(--ls-text-muted);
    cursor: pointer;
    transition: transform .18s ease, background .18s ease, color .18s ease;
}

.powell-fs-view-btn i {
    font-size: 16px;
}

.powell-fs-view-btn:hover {
    color: var(--ls-primary);
    background: #fff;
}

.powell-fs-view-btn.is-active {
    background: #fff;
    color: var(--ls-primary);
}

.powell-fs-toolbar {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 20px;
}

.powell-fs-search {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(36, 26, 20, 0.1);
    flex: 1 1 320px;
    max-width: 320px;
    height: 36px;
    padding: 0 14px;
    border-radius: var(--ls-radius-xl);
    background: #fafafa;
    border-color: rgba(36, 26, 20, 0.08);
}

.powell-fs-search i {
    color: #bbb;
    font-size: 16px;
}

.powell-fs-search input {
    width: 100%;
    border: 0;
    outline: none;
    background: transparent;
    color: var(--ls-text);
    font-size: 14px;
}

.powell-fs-form-grid input {
    width: 100%;
    border: 0;
    outline: none;
    background: transparent;
    color: var(--ls-text);
    font-size: 14px;
}

.powell-fs-form-grid select {
    width: 100%;
    border: 0;
    outline: none;
    background: transparent;
    color: var(--ls-text);
    font-size: 14px;
}

.powell-fs-form-block input {
    width: 100%;
    border: 0;
    outline: none;
    background: transparent;
    color: var(--ls-text);
    font-size: 14px;
}

.powell-fs-form-block textarea {
    width: 100%;
    border: 0;
    outline: none;
    background: transparent;
    color: var(--ls-text);
    font-size: 14px;
}

.powell-fs-toolbar select {
    width: 100%;
    border: 0;
    outline: none;
    background: transparent;
    color: var(--ls-text);
    font-size: 14px;
}

.powell-fs-search:has(> input:focus) {
    border-color: var(--ls-primary);
}

.powell-fs-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.powell-fs-tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.powell-fs-chip-row button {
    cursor: pointer;
}

.powell-fs-chip-row button:hover {
    background: var(--ls-primary-light);
    color: var(--ls-primary);
}

.powell-fs-chip {
    border: 1px solid rgba(36, 26, 20, 0.08);
    background: #fff;
    color: var(--ls-text-muted);
}

.powell-fs-tag {
    border: 1px solid rgba(36, 26, 20, 0.08);
    background: #fff;
    color: var(--ls-text-muted);
}

.powell-fs-badge.is-soft {
    border: 1px solid rgba(36, 26, 20, 0.08);
    background: #fff;
    color: var(--ls-text-muted);
}

.powell-fs-chip.is-active {
    background: var(--ls-primary-light);
    color: var(--ls-primary);
}

.powell-fs-badge {
    background: var(--ls-primary-light);
    color: var(--ls-primary);
}

.powell-fs-badge.detail-badge {
    background: var(--ls-primary);
    color: var(--ls-primary-light);
}

.powell-fs-badge.detail-badge.is-soft {
    background: var(--ls-success);
    color: var(--ls-success-light);
}

.powell-fs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 18px;
}

.powell-fs-grid.is-list {
    grid-template-columns: 1fr;
    gap: 16px;
}

.powell-fs-grid:has( > .powell-fs-empty-inline) {
    grid-template-columns: 1fr;
}

.powell-fs-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    padding: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.powell-fs-card:hover {
    transform: translateY(-4px);
}

.powell-fs-card-cover {
    display: block;
    aspect-ratio: 4 / 3;
    background: rgba(28, 75, 90, 0.05);
    overflow: hidden;
    border: 1px solid var(--ls-border-light);
    border-radius: var(--ls-radius-sm);
}

.powell-fs-card-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.powell-fs-detail-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.powell-fs-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.powell-fs-shot-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.powell-fs-upload-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.powell-fs-card-cover-fallback {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: var(--ls-secondary);
    font-size: 24px;
    font-weight: 800;
}

.powell-fs-card-cover-img {
    transition: transform 0.35s ease;
}

.powell-fs-shot img {
    transition: transform 0.35s ease;
}

.powell-fs-card:hover .powell-fs-card-cover-img {
    transform: scale(1.04);
}

.powell-fs-card:hover .powell-fs-shot img {
    transform: scale(1.04);
}

.powell-fs-card-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.powell-fs-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 2px 8px;
    border-radius: var(--ls-radius-sm);
    font-size: 11px;
    font-weight: 500;
    line-height: 18px;
    background: var(--ls-primary);
    color: #fff;
}

.powell-fs-card-top {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.powell-fs-upload-head {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.powell-fs-pay-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.powell-fs-inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.powell-fs-manage-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.powell-fs-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.powell-fs-load-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.powell-fs-mini-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.powell-fs-card-top {
    margin-bottom: 10px;
}

.powell-fs-card-top .powell-fs-badge {
    padding: 4px 8px;
    border-radius: var(--ls-radius-lg);
}

.powell-fs-card h3 a {
    color: inherit;
}

.powell-fs-nav-item {
    color: inherit;
}

.powell-fs-grid .powell-fs-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.45;
}

.powell-fs-upload-head button {
    min-height: 30px;
    border-radius: var(--ls-radius-lg);
}

.powell-fs-card p {
    margin: 8px 0 12px;
    min-height: 46px;
    color: var(--ls-text-muted);
    line-height: 1.75;
    font-size: 14px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.powell-fs-card-foot {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
}

.powell-fs-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--ls-text-muted);
    font-size: 13px;
}

.powell-fs-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--ls-text-muted);
    font-size: 13px;
}

.powell-fs-card-meta {
    flex: 1 1 auto;
    min-width: 0;
}

.powell-fs-price {
    flex: 0 0 auto;
    color: var(--ls-primary);
    font-weight: 800;
    font-size: 20px;
    line-height: 1;
    white-space: nowrap;
}

.powell-fs-grid.is-list .powell-fs-card {
    display: grid;
    grid-template-columns: 188px minmax(0, 1fr);
    align-items: stretch;
}

.powell-fs-grid.is-list .powell-fs-card:hover {
    transform: translateY(-2px);
}

.powell-fs-grid.is-list .powell-fs-card-cover {
    height: 100%;
    min-height: 148px;
    aspect-ratio: auto;
}

.powell-fs-grid.is-list .powell-fs-card-body {
    padding: 22px 24px;
}

.powell-fs-grid.is-list .powell-fs-card h3 {
    font-size: 22px;
}

.powell-fs-grid.is-list .powell-fs-card p {
    min-height: 0;
    margin-bottom: 16px;
    -webkit-line-clamp: 3;
}

.powell-fs-grid.is-list .powell-fs-card-foot {
    padding-top: 16px;
    border-top: 1px solid rgba(36, 26, 20, 0.08);
}

.powell-fs-grid.is-list .powell-fs-card-meta {
    gap: 10px 14px;
    font-size: 13px;
}

.powell-fs-grid.is-list .powell-fs-price {
    font-size: 24px;
}

.powell-fs-detail {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 18px;
}

.powell-fs-detail-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.powell-fs-detail-card {
    padding: 24px;
}

.powell-fs-side-card {
    padding: 24px;
}

.powell-fs-panel {
    padding: 24px;
}

.powell-fs-form-card {
    padding: 24px;
}

.powell-fs-empty-card {
    padding: 24px;
}

.powell-fs-detail-head {
    position: relative;
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 20px;
}

.powell-fs-detail-cover {
    height: 220px;
    aspect-ratio: 4 / 3;
    background: rgba(28, 75, 90, 0.05);
    overflow: hidden;
    border: 1px solid var(--ls-border-light);
    border-radius: var(--ls-radius-sm);
    transition: transform 0.35s ease;
}

.powell-fs-detail-cover:hover {
    transform: scale(1.04);
}

.powell-fs-detail-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}

.powell-fs-detail-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.powell-fs-detail-title {
    max-width: calc(100% - 115px);
}

.powell-fs-detail-title h2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.powell-fs-detail-section {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px dashed rgba(36, 26, 20, 0.12);
}

.powell-fs-detail-section h3 {
    margin: 0 0 12px;
    font-size: 18px;
}

.powell-fs-rich {
    line-height: 1.9;
    color: var(--ls-text);
    font-size: 14px;
}

.powell-fs-shot-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.powell-fs-shot-preview {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.powell-fs-shot-preview:has( > .powell-fs-upload-empty) {
    grid-template-columns: 1fr;
}

.powell-fs-shot {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: var(--ls-radius-xl);
    aspect-ratio: 4 / 3;
    background: var(--ls-bg);
}

.powell-fs-shot-item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: var(--ls-radius-xl);
    aspect-ratio: 4 / 3;
    background: var(--ls-bg);
}

.powell-fs-shot-remove {
    position: absolute;
    right: 8px;
    bottom: 8px;
    padding: 6px 10px;
    border: 0;
    border-radius: var(--ls-radius-full);
    background: rgba(36, 26, 20, 0.8);
    color: #fff;
    cursor: pointer;
    font-size: 12px;
}

.powell-fs-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    color: #fff;
    background: var(--ls-primary);
    cursor: pointer;
    transition: var(--ls-transition);
    padding: 6px 14px;
    border: none;
    border-radius: var(--ls-radius-lg);
    font-size: 13px;
    font-weight: 500;
    gap: 4px;
    white-space: nowrap;
}

.powell-fs-btn:hover {
    transform: translateY(-1px);
}

.powell-fs-btn.is-primary {
    background: var(--ls-primary);
    color: #fff;
}

.powell-fs-btn.is-soft {
    background: var(--ls-bg);
    color: var(--ls-secondary);
    border-color: rgba(28, 75, 90, 0.14);
}

.powell-fs-btn.is-wide {
    width: 100%;
}

.powell-fs-btn.is-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    pointer-events: none;
}

.powell-fs-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    pointer-events: none;
}

.powell-fs-purchase-box {
    display: grid;
    gap: 14px;
}

.powell-fs-purchase-head {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.powell-fs-purchase-head strong {
    font-size: 22px;
    color: var(--ls-primary);
}

.powell-fs-mini-stats {
    justify-content: space-between;
}

.powell-fs-mini-stats > div {
    flex: 1 1 120px;
    padding: 14px;
    border-radius: var(--ls-radius-xl);
    background: rgba(28, 75, 90, 0.06);
}

.powell-fs-mini-stats small {
    display: block;
    color: var(--ls-text-muted);
    margin-bottom: 6px;
}

.powell-fs-mini-stats strong {
    font-size: 20px;
}

.powell-fs-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.powell-fs-form-grid label {
    display: grid;
    gap: 8px;
}

.powell-fs-form-block {
    display: grid;
    gap: 8px;
    margin-bottom: 20px;
}

.powell-fs-form-grid span {
    font-weight: 700;
    font-size: 14px;
}

.powell-fs-form-block span {
    font-weight: 700;
    font-size: 14px;
}

.powell-fs-form-grid input {
    height: 36px;
    padding: 0 14px;
    border-radius: var(--ls-radius-xl);
    background: #fff;
    border: 1px solid rgba(36, 26, 20, 0.12);
}

.powell-fs-form-grid select {
    height: 36px;
    padding: 0 14px;
    border-radius: var(--ls-radius-xl);
    background: #fff;
    border: 1px solid rgba(36, 26, 20, 0.12);
}

.powell-fs-form-block input {
    height: 36px;
    padding: 0 14px;
    border-radius: var(--ls-radius-xl);
    background: #fff;
    border: 1px solid rgba(36, 26, 20, 0.12);
}

.powell-fs-form-block textarea {
    height: 36px;
    padding: 0 14px;
    border-radius: var(--ls-radius-xl);
    background: #fff;
    border: 1px solid rgba(36, 26, 20, 0.12);
}

.powell-fs-toolbar select {
    height: 36px;
    padding: 0 14px;
    border-radius: var(--ls-radius-xl);
    background: #fff;
    border: 1px solid rgba(36, 26, 20, 0.12);
}

.powell-fs-toolbar select[data-role="fs-manage-status"] {
    width: 120px;
}

.powell-fs-form-block textarea {
    min-height: 180px;
    padding: 14px;
    resize: vertical;
}

.powell-fs-upload-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 20px 0;
}

.powell-fs-upload-card {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.powell-fs-upload-card.is-full {
    margin-bottom: 16px;
}

.powell-fs-upload-card[data-role="fs-source-external-panel"] {
    gap: 18px;
    padding: 22px;
}

.powell-fs-upload-head h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.4;
}

.powell-fs-check {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0 18px;
    color: var(--ls-text-muted);
}

.powell-fs-file-chip {
    display: grid;
    gap: 12px;
}

.powell-fs-manage-row {
    display: grid;
    gap: 12px;
}

.powell-fs-order-row {
    display: grid;
    gap: 12px;
}

.powell-fs-alert-row {
    display: grid;
    gap: 12px;
}

.powell-fs-file-chip {
    padding: 14px 16px;
    border-radius: var(--ls-radius-xl);
    background: rgba(28, 75, 90, 0.05);
    border: 1px dashed rgba(28, 75, 90, 0.14);
}

.powell-fs-file-chip span {
    word-break: break-all;
}

.powell-fs-link-editor {
    display: grid;
    gap: 12px;
}

.powell-fs-link-row {
    display: grid;
    grid-template-columns: minmax(150px, 0.9fr) minmax(280px, 1.8fr) minmax(150px, 0.9fr) auto;
    gap: 12px;
    align-items: end;
    padding: 16px;
    border: 1px dashed rgba(59, 130, 246, 0.18);
    border-radius: var(--ls-radius-xl);
    background: rgba(59, 130, 246, 0.035);
}

.powell-fs-link-row label {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.powell-fs-link-row span {
    color: var(--ls-text);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
}

.powell-fs-link-row input {
    width: 100%;
    height: 36px;
    padding: 0 12px;
    border-radius: var(--ls-radius-xl);
    background: #fff;
    border: 1px solid rgba(36, 26, 20, 0.12);
}

.powell-fs-link-row input:focus {
    border-color: var(--ls-primary);
}

.powell-fs-link-row .powell-fs-mini-link {
    height: 36px;
    padding: 0 14px;
}

[data-role="fs-external-preview"] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

[data-role="fs-external-preview"]:empty {
    display: none;
}

[data-role="fs-external-preview"] .powell-fs-file-chip {
    min-height: 132px;
    align-content: start;
    padding: 18px 20px;
    background: rgba(59, 130, 246, 0.04);
    border-color: rgba(59, 130, 246, 0.16);
}

[data-role="fs-external-preview"] .powell-fs-file-chip strong {
    font-size: 16px;
    line-height: 1.4;
}

@media (max-width: 760px) {
    .powell-fs-link-row {
        grid-template-columns: 1fr;
    }

    [data-role="fs-external-preview"] {
        grid-template-columns: 1fr;
    }

    .powell-fs-upload-card[data-role="fs-source-external-panel"] {
        padding: 18px;
    }
}

.powell-fs-source-switch {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.powell-fs-source-option {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    border-radius: var(--ls-radius-xl);
    border: 1px solid rgba(36, 26, 20, 0.12);
    background: rgba(255, 255, 255, 0.82);
    color: var(--ls-text-primary);
}

.powell-fs-source-option input {
    margin: 0;
}

.powell-fs-list {
    display: grid;
    gap: 14px;
    padding: 14px;
    border-radius: var(--ls-radius-xl);
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(36, 26, 20, 0.08);
    backdrop-filter: blur(16px);
}

.powell-fs-manage-row {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
}

.powell-fs-order-row {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
}

.powell-fs-manage-row {
    padding: 18px 20px;
    border-radius: var(--ls-radius-xl);
    border: 1px solid rgba(36, 26, 20, 0.08);
}

.powell-fs-order-row {
    padding: 18px 20px;
    border-radius: var(--ls-radius-xl);
    border: 1px solid rgba(36, 26, 20, 0.08);
}

.powell-fs-alert-row {
    padding: 18px 20px;
    border-radius: var(--ls-radius-xl);
    border: 1px solid rgba(36, 26, 20, 0.08);
}

.powell-fs-manage-main {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 16px;
    align-items: self-start;
}

.powell-fs-manage-cover {
    width: 104px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--ls-radius-xl);
    background: var(--ls-primary-light);
}

.powell-fs-manage-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.powell-fs-manage-cover-fallback {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: var(--ls-secondary);
    font-size: 24px;
    font-weight: 800;
}

.powell-fs-manage-copy {
    min-width: 0;
    display: grid;
    gap: 10px;
}

.powell-fs-manage-head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.powell-fs-manage-main h3 {
    margin: 0;
}

.powell-fs-order-row strong {
    margin: 0;
}

.powell-fs-manage-main h3 a {
    color: inherit;
    text-decoration: none;
}

.powell-fs-manage-main h3 a:hover {
    color: var(--ls-primary);
}

.powell-fs-manage-main p {
    color: var(--ls-text-muted);
    margin: 0;
}

.powell-fs-order-row span {
    color: var(--ls-text-muted);
    margin: 0;
}

.powell-fs-alert-row span {
    color: var(--ls-text-muted);
    margin: 0;
}

.powell-fs-manage-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.powell-fs-manage-meta span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: var(--ls-radius-xl);
    font-size: 12px;
    font-weight: 700;
}

.powell-fs-manage-meta span {
    background: var(--ls-bg);
    color: var(--ls-text-muted);
    border: 1px solid var(--ls-border);
}

.powell-fs-manage-status {
    padding: 2px 8px;
    border-radius: var(--ls-radius-sm);
    font-size: 11px;
    font-weight: 500;
    line-height: 18px;
    white-space: nowrap;
    background: var(--ls-bg);
    color: var(--ls-secondary);
    border: 1px solid rgba(28, 75, 90, 0.1);
}

.powell-fs-manage-status.is-publish {
    background: rgba(88, 163, 85, 0.14);
    color: #2d6c35;
    border-color: rgba(88, 163, 85, 0.18);
}

.powell-fs-manage-status.is-pending {
    background: rgba(241, 195, 91, 0.2);
    color: #8d6400;
    border-color: rgba(241, 195, 91, 0.24);
}

.powell-fs-manage-status.is-draft {
    background: rgba(36, 26, 20, 0.06);
    color: var(--ls-text-muted);
    border-color: rgba(36, 26, 20, 0.1);
}

.powell-fs-manage-status.is-offline {
    background: rgba(36, 26, 20, 0.06);
    color: var(--ls-text-muted);
    border-color: rgba(36, 26, 20, 0.1);
}

.powell-fs-manage-actions {
    justify-content: flex-end;
}

.powell-fs-order-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.powell-fs-alert-row {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
}

.powell-fs-order-row > div {
    min-width: 0;
    display: grid;
    gap: 6px;
}

.powell-fs-alert-row > div {
    min-width: 0;
    display: grid;
    gap: 6px;
}

.powell-fs-mini-link.is-danger {
    color: var(--ls-danger);
    border-color: rgba(194, 79, 70, 0.16);
    background: rgba(194, 79, 70, 0.05);
}

.powell-fs-empty-card {
    text-align: center;
    padding: 42px 24px;
}

.powell-fs-empty-inline {
    padding: 18px;
    border-radius: var(--ls-radius-xl);
    background: rgba(28, 75, 90, 0.06);
    color: var(--ls-text-muted);
    text-align: center;
}

.powell-fs-list > .powell-fs-empty-inline {
    margin: 2px;
}

.powell-fs-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.powell-fs-modal.is-hidden {
    display: none;
}

.powell-fs-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 16, 14, 0.58);
}

.powell-fs-modal-card {
    position: relative;
    width: min(520px, calc(100% - 28px));
    margin: 8vh auto 0;
    padding: 28px;
    border-radius: var(--ls-radius-xl);
    background: #fff;
}

.powell-fs-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: var(--ls-radius-full);
    background: rgba(36, 26, 20, 0.08);
    cursor: pointer;
    font-size: 20px;
}

.powell-fs-pay-box {
    display: grid;
    gap: 16px;
    justify-items: center;
    text-align: center;
}

.powell-fs-pay-copy h3 {
    margin: 0 0 8px;
    font-size: 22px;
}

.powell-fs-pay-copy p {
    margin: 6px 0 0;
    color: var(--ls-text-muted);
    line-height: 1.8;
}

.powell-fs-pay-status {
    margin: 6px 0 0;
    color: var(--ls-text-muted);
    line-height: 1.8;
}

.powell-fs-pay-qr {
    padding: 16px;
    border-radius: var(--ls-radius-xl);
    background: rgba(28, 75, 90, 0.05);
}

.powell-fs-pay-qr canvas {
    display: block;
    width: 220px;
    height: 220px;
}
