.shops-page {
    padding: 40px 20px;
    background: #f7f8fc;
    min-height: 100vh;
}

.shops-container {
    max-width: 1000px;
    margin: 0 auto;
}

.shops-hero {
    text-align: center;
    margin-bottom: 30px;
}

.shops-title {
    margin: 0 0 10px;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
    color: #1f2937;
}

.shops-subtitle {
    margin: 0;
    font-size: 16px;
    color: #6b7280;
}

.shops-search-form {
    margin-bottom: 30px;
}

.shops-search-group {
    display: flex;
    gap: 12px;
    align-items: center;
}

.shops-search-input {
    flex: 1;
    height: 50px;
    padding: 0 16px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 15px;
    color: #111827;
    background: #ffffff;
    outline: none;
    box-sizing: border-box;
}

.shops-search-input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.shops-search-button {
    height: 50px;
    padding: 0 24px;
    border: none;
    border-radius: 10px;
    background: #2563eb;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.shops-search-button:hover {
    background: #1d4ed8;
}

.shops-results-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
}

.shops-exam-item {
    display: block;
    padding: 20px;
    text-decoration: none;
    border-bottom: 1px solid #f0f1f5;
    transition: background 0.2s ease;
}

.shops-exam-item:last-child {
    border-bottom: none;
}

.shops-exam-item:hover {
    background: #f9fafb;
}

.shops-exam-name {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 6px;
}

.shops-exam-description {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
}

.shops-empty-state {
    padding: 40px 20px;
    text-align: center;
    color: #6b7280;
    font-size: 15px;
}

.shops-exam-item {
    display: block;
    padding: 20px;
    text-decoration: none;
    border-bottom: 1px solid #f0f1f5;
    transition: background 0.2s ease;
}

.shops-exam-item:last-child {
    border-bottom: none;
}

.shops-exam-item:hover {
    background: #f9fafb;
}

.shops-exam-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 6px;
}

.shops-exam-name {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.shops-book-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    background: #eef2ff;
    color: #1d4ed8;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .shops-page {
        padding: 30px 15px;
    }

    .shops-title {
        font-size: 28px;
    }

    .shops-search-group {
        flex-direction: column;
        align-items: stretch;
    }

    .shops-search-button {
        width: 100%;
    }

    .shops-exam-name {
        font-size: 18px;
    }

    .shops-exam-header {
        align-items: flex-start;
    }

    .shops-exam-name {
        font-size: 18px;
    }
}