.shops-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}
.page-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 24px 0 30px;
}
.page-title {
    font-size: 2.5rem;
    color: #667eea;
}
.btn-add-shop {
    background: #667eea;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}
.btn-add-shop:hover {
    background: #5568d3;
}
.filters {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}
.filters input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
}
.shop-form {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: none;
}
.shop-form.visible {
    display: block;
}
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
}
.form-group textarea {
    min-height: 80px;
    resize: vertical;
}
.form-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}
.btn-submit {
    background: #667eea;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}
.btn-submit:hover {
    background: #5568d3;
}
.btn-cancel {
    background: #e0e0e0;
    color: #333;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}
.btn-cancel:hover {
    background: #d0d0d0;
}
.shops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}
.shop-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}
.shop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.shop-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}
.shop-category {
    display: inline-block;
    background: #667eea;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    margin-bottom: 12px;
}
.shop-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 16px;
}
.shop-link {
    display: inline-block;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 12px;
}
.shop-link:hover {
    text-decoration: underline;
}
.shop-meta {
    color: #888;
    font-size: 0.85rem;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #eee;
}
.shop-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}
.btn-edit, .btn-delete {
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
}
.btn-edit {
    background: #667eea;
    color: white;
}
.btn-edit:hover {
    background: #5568d3;
}
.btn-delete {
    background: #dc3545;
    color: white;
}
.btn-delete:hover {
    background: #c82333;
}
.no-shops {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}
.loading {
    text-align: center;
    padding: 40px;
    color: #666;
}
.login-prompt {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
    text-align: center;
}
.login-prompt a {
    color: #667eea;
    font-weight: 600;
}
