#wc-selector-app {
    max-width: 1200px;
    margin: 0 auto;
    font-family: inherit;
}

/* Breadcrumbs */
.wcsp-breadcrumbs {
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}
.wcsp-crumb {
    cursor: pointer;
    color: #0073aa;
    font-weight: 600;
}
.wcsp-crumb:hover { text-decoration: underline; }
.wcsp-crumb.active { color: #333; cursor: default; text-decoration: none; }
.wcsp-sep { color: #ccc; margin: 0 5px; }

/* Titles */
.wcsp-step-title {
    margin-bottom: 25px;
    font-size: 24px;
    text-align: center;
}

/* Grid Layout (Steps 0 & 1) */
.wcsp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

/* Items */
.wcsp-item {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
}
.wcsp-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
    border-color: #ddd;
}
.wcsp-img-wrap {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}
.wcsp-img-wrap img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}
.wcsp-title {
    font-weight: bold;
    font-size: 16px;
    line-height: 1.3;
}

/* List Mode (Step 2 - Results) */
.wcsp-list-mode {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.wcsp-result-item {
    display: flex;
    align-items: center;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 6px;
    background: #fff;
}
.wcsp-result-img {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    margin-right: 20px;
}
.wcsp-result-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}
.wcsp-result-info {
    flex-grow: 1;
}
.wcsp-result-title {
    display: block;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
    margin-bottom: 5px;
}
.wcsp-result-price {
    font-weight: bold;
    color: #0073aa;
    margin-bottom: 10px;
}
.wcsp-btn {
    display: inline-block;
    padding: 8px 15px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
}
.wcsp-btn:hover {
    background: #005177;
    color: #fff;
}

/* Mobile Fixes */
@media (max-width: 600px) {
    .wcsp-grid { grid-template-columns: repeat(2, 1fr); }
    .wcsp-result-item { flex-direction: column; text-align: center; }
    .wcsp-result-img { margin: 0 auto 10px auto; }
}