/* Static Showcase Styles for Hero Section */

.hero-showcase {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}

/* Photorealistic UI Replica - Static */
.static-mockup {
    width: 100%;
    max-width: 440px; 
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    color: #1c1c1e;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* Header Bar */
.wf-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px 8px;
}

.wf-window-controls { display: flex; gap: 8px; align-items: center; }
.wf-control { width: 12px; height: 12px; display: inline-block; cursor: pointer; }
.wf-control.red-dot { background: #FF5F56; border-radius: 50%; }
.wf-control.icon-list::before { content: '≣'; font-size: 14px; color: #888; margin-top: -2px; display: block;}
.wf-control.icon-trash::before { content: '🗑'; font-size: 13px; color: #888; }

.wf-logo {
    font-weight: 700;
    font-size: 15px;
    letter-spacing: -0.5px;
}
.wf-logo span { font-size: 20px; font-weight: 500; margin-left: 2px; vertical-align: middle; }

.wf-window-actions { display: flex; gap: 6px; align-items: center; }
.wf-action { width: 26px; height: 26px; display: inline-flex; align-items: center; justify-content: center; border-radius: 6px; }
.wf-action.icon-split { background: #007AFF; color: white; font-weight: 900; }
.wf-action.icon-split::before { content: '◫'; }
.wf-action.icon-stack { background: #EFEFEF; }
.wf-action.icon-stack::before { content: '⊟'; color: #333; font-weight: 900; }
.wf-action.icon-settings::before { content: '⚙'; color: #888; font-size: 14px; }

/* Search Container */
.wf-search-container {
    padding: 8px 16px;
    position: relative;
}

.wf-search-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #F4F4F4;
    padding: 10px 12px;
    border-radius: 8px;
    color: rgba(0, 0, 0, 0.4);
    font-size: 14px;
}

.wf-local-badge {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    background: #E5E5E5;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 500;
    color: #333;
}

/* Tabs */
.wf-tabs {
    display: flex;
    gap: 8px;
    padding: 8px 16px 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    overflow-x: hidden;
}

.wf-tab {
    font-size: 13px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 100px;
    background: #F4F4F4;
    color: rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

.wf-tab.active {
    background: #E5E5E5;
    color: #000;
    font-weight: 600;
}

/* List */
.wf-list {
    display: flex;
    flex-direction: column;
    padding: 8px 16px 16px;
    gap: 2px;
    text-align: left;
}

.wf-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    border-radius: 8px;
    position: relative;
}

.wf-item.active { background: #007AFF; color: white; }
.wf-item.active .wf-item-num { color: rgba(255,255,255,0.7); }

.wf-item.marked::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: #FFCC00;
    border-radius: 0 4px 4px 0;
}

.wf-item-num {
    font-size: 13px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.4);
    width: 14px;
}

.wf-item-icon {
    font-size: 14px;
}

.wf-item-content {
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}
