* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Apple SD Gothic Neo', sans-serif;
    background: #fff;
    color: #333;
}

/* 헤더 */
header {
    background: linear-gradient(135deg, #e91e92 0%, #d91e8e 100%);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* 방문자 카운터 - 우측 상단 */
.visitor-counter {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.25);
    padding: 6px 12px;
    border-radius: 20px;
    display: flex;
    gap: 3px;
    font-family: 'Courier New', monospace;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.visitor-counter span {
    font-weight: bold;
    min-width: 12px;
    text-align: center;
}

/* 모바일에서 방문자 카운터 조정 */
@media (max-width: 768px) {
    .visitor-counter {
        top: 8px;
        right: 10px;
        font-size: 13px;
        padding: 4px 8px;
    }
    
    .visitor-counter span {
        min-width: 10px;
    }
}

.logo {
    flex: 1;
    text-align: center;
}

.logo-subtitle {
    font-size: 12px;
    margin-bottom: 5px;
    opacity: 0.9;
}

.logo-title {
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 2px;
}

.menu-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-button span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px 0;
    border-radius: 2px;
}

/* 메인 카테고리 */
.main-categories {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.categories-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.categories-scroll::-webkit-scrollbar {
    display: none;
}

.categories-wrapper {
    display: flex;
    gap: 10px;
    padding: 0 20px;
    min-width: min-content;
}

.category-btn {
    background: white;
    border: 2px solid #e91e92;
    color: #e91e92;
    padding: 5px 18px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s;
}

.category-btn:hover {
    background: #fce4f0;
}

.category-btn.active {
    background: #e91e92;
    color: white;
}

.category-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(233, 30, 146, 0.8);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
    display: none;
}

.category-nav.prev {
    left: 5px;
}

.category-nav.next {
    right: 5px;
}

/* 서브 카테고리 */
.sub-categories {
    background: #f8f8f8;
    padding: 15px 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.sub-category-btn {
    background: white;
    border: 1px solid #ddd;
    padding: 3px 13px;
    border-radius: 5px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
}

.sub-category-btn:hover {
    background: #f0f0f0;
}

.sub-category-btn.active {
    background: #e91e92;
    color: white;
    border-color: #e91e92;
}

/* 컨텐츠 영역 */
.content-area {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumb {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e91e92;
}

.breadcrumb span {
    color: #e91e92;
    font-weight: 600;
}

/* 아이템 그리드 */
.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 100px;
}

.item-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.item-card:hover {
    border-color: #e91e92;
    box-shadow: 0 5px 15px rgba(233, 30, 146, 0.2);
    transform: translateY(-5px);
}

.item-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #f0f0f0;
}

.item-card-content {
    padding: 15px;
}

.item-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.item-card-info {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.item-card-date {
    font-size: 12px;
    color: #999;
    margin-top: 10px;
}

/* 모달 */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e91e92;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
}

.modal-body {
    padding: 20px;
}

.modal-image {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.modal-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.modal-info {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
}

.modal-info strong {
    color: #e91e92;
    display: inline-block;
    min-width: 80px;
}

.modal-call-btn {
    background: #e91e92;
    color: white;
    border: none;
    padding: 15px;
    width: 100%;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
}

/* 푸터 */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 15px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 10px;
    z-index: 100;
}

.footer-btn {
    flex: 1;
    background: white;
    border: 2px solid #e91e92;
    color: #e91e92;
    padding: 15px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.footer-btn:hover {
    background: #e91e92;
    color: white;
}

/* 반응형 */
@media (max-width: 768px) {
    .logo-title {
        font-size: 24px;
    }
    
    .items-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
    }
}

/* 빈 상태 */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.empty-state-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.empty-state-text {
    font-size: 18px;
}/* 업체 카드 스타일 */
.store-card {
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.store-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.store-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    position: relative;
}

/* 회원/미가입 업체 카드: 동일한 레이아웃(이미지 상단) + 더 컴팩트한 높이 */
.store-card .item-card-image {
    height: 150px;
}

.store-category-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: bold;
    color: #667eea;
}

/* 모달 버튼 그룹 */
.modal-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.modal-map-btn, .modal-web-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
}

.modal-map-btn {
    background: #4CAF50;
    color: white;
}

.modal-map-btn:hover {
    background: #45a049;
}

.modal-web-btn {
    background: #2196F3;
    color: white;
}

.modal-web-btn:hover {
    background: #0b7dda;
}

/* 관리자 페이지 통계 요약 */
.stats-summary {
    margin: 15px 0;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 8px;
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 14px;
}

.stats-summary strong {
    color: #667eea;
    font-size: 18px;
}

/* 빈 상태 개선 */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state-icon {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-state-text {
    font-size: 18px;
    color: #999;
}

/* 테이블 스타일 개선 */
.data-table tbody tr:hover {
    background-color: #f8f9fa;
}

.data-table td {
    vertical-align: middle;
}

.data-table td small {
    color: #666;
    display: block;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 13px;
    margin: 2px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    background: #667eea;
    color: white;
    transition: all 0.2s;
}

.btn-sm:hover {
    background: #5568d3;
}

.btn-sm.btn-edit {
    background: #4CAF50;
}

.btn-sm.btn-edit:hover {
    background: #45a049;
}

.btn-sm.btn-delete {
    background: #f44336;
}

.btn-sm.btn-delete:hover {
    background: #da190b;
}

/* 폼 스타일 */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 12px;
}

/* 모달 크기 조정 */
.modal-content.large {
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
}
/* 업체 카드 스타일 */
.store-card {
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.store-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.store-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    position: relative;
}

.store-category-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: bold;
    color: #667eea;
}

/* 모달 버튼 그룹 */
.modal-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.modal-map-btn, .modal-web-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
}

.modal-map-btn {
    background: #4CAF50;
    color: white;
}

.modal-map-btn:hover {
    background: #45a049;
}

.modal-web-btn {
    background: #2196F3;
    color: white;
}

.modal-web-btn:hover {
    background: #0b7dda;
}

/* 관리자 페이지 통계 요약 */
.stats-summary {
    margin: 15px 0;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 8px;
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 14px;
}

.stats-summary strong {
    color: #667eea;
    font-size: 18px;
}

/* 빈 상태 개선 */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state-icon {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-state-text {
    font-size: 18px;
    color: #999;
}

/* 테이블 스타일 개선 */
.data-table tbody tr:hover {
    background-color: #f8f9fa;
}

.data-table td {
    vertical-align: middle;
}

.data-table td small {
    color: #666;
    display: block;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 13px;
    margin: 2px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    background: #667eea;
    color: white;
    transition: all 0.2s;
}

.btn-sm:hover {
    background: #5568d3;
}

.btn-sm.btn-edit {
    background: #4CAF50;
}

.btn-sm.btn-edit:hover {
    background: #45a049;
}

.btn-sm.btn-delete {
    background: #f44336;
}

.btn-sm.btn-delete:hover {
    background: #da190b;
}

/* 폼 스타일 */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 12px;
}

/* 모달 크기 조정 */
.modal-content.large {
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
}
/* 반응형 그리드 - 모바일에서 2열 */
@media (max-width: 768px) {
    .items-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        padding: 15px !important;
    }
    
    .item-card {
        min-height: 200px;
    }
    
    .item-card-title {
        font-size: 14px !important;
    }
    
    .item-card-info {
        font-size: 11px !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .items-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (min-width: 1025px) {
    .items-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

/* 비회원 카드 스타일 */
.non-member-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
    border: 2px dashed #ccc !important;
    cursor: default;
}

.non-member-content {
    text-align: center;
    padding: 20px;
}

.non-member-name {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.non-member-badge {
    display: inline-block;
    padding: 5px 15px;
    background: #ff9800;
    color: white;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

/* 회원 배지 */
.member-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #4CAF50;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* 모달 헤더 배지 */
.modal-header-badge {
    margin-bottom: 15px;
}

.modal-member-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(76, 175, 80, 0.3);
}

/* 비회원 모달 */
.non-member-modal-content {
    text-align: center;
    padding: 20px;
}

.non-member-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.non-member-message {
    margin: 20px 0;
    padding: 20px;
    background: #fff3cd;
    border-radius: 8px;
    border-left: 4px solid #ff9800;
}

.non-member-message p {
    margin: 10px 0;
    color: #856404;
}

.modal-register-btn {
    width: 100%;
    padding: 15px;
    margin-top: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s;
}

.modal-register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* 폼 스타일 */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
    font-size: 14px;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

/* 모달 푸터 */
.modal-footer {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.btn-secondary, .btn-primary {
    flex: 1;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.btn-secondary {
    background: white;
    border: 1px solid #ddd;
    color: #666;
}

.btn-secondary:hover {
    background: #f5f5f5;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
    transform: translateY(-2px);
}

/* 모달 크기 조정 */
.modal-content {
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
}

/* 스크롤바 스타일 */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* 모바일 헤더 조정 */
@media (max-width: 768px) {
    header {
        padding: 10px 15px;
    }
    
    .logo-title {
        font-size: 24px !important;
    }
    
    .logo-subtitle {
        font-size: 11px !important;
    }
    
    .main-categories {
        padding: 10px 0;
    }
    
    .category-btn {
        padding: 8px 15px !important;
        font-size: 13px !important;
    }
    
    .sub-category-btn {
        padding: 6px 12px !important;
        font-size: 12px !important;
    }
    
    footer {
        padding: 15px !important;
    }
    
    .footer-btn {
        padding: 12px !important;
        font-size: 13px !important;
    }
}
/* 진한 보라색 계열 색상 변경 */

/* 헤더 */
header {
    background: linear-gradient(135deg, #6B46C1 0%, #553C9A 100%) !important;
}

/* 카테고리 버튼 활성화 */
.category-btn.active,
.sub-category-btn.active {
    background: linear-gradient(135deg, #6B46C1 0%, #553C9A 100%) !important;
}

.category-btn:hover,
.sub-category-btn:hover {
    background: #F3F4F6 !important;
}

/* 업체 이미지 */
.store-image {
    background: linear-gradient(135deg, #6B46C1 0%, #553C9A 100%) !important;
}

/* 하단 버튼 */
.footer-btn {
    background: linear-gradient(135deg, #6B46C1 0%, #553C9A 100%) !important;
}

.footer-btn:hover {
    background: linear-gradient(135deg, #553C9A 0%, #44337D 100%) !important;
}

/* 모달 버튼 */
.modal-call-btn,
.modal-register-btn,
.btn-primary {
    background: linear-gradient(135deg, #6B46C1 0%, #553C9A 100%) !important;
}

.modal-call-btn:hover,
.modal-register-btn:hover,
.btn-primary:hover {
    background: linear-gradient(135deg, #553C9A 0%, #44337D 100%) !important;
}

/* 포커스 색상 */
.form-input:focus,
.form-textarea:focus {
    border-color: #6B46C1 !important;
    box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.1) !important;
}

/* 회원 배지 */
.modal-member-badge {
    background: linear-gradient(135deg, #6B46C1 0%, #553C9A 100%) !important;
}

/* 관리자 사이드바 */
.sidebar {
    background: linear-gradient(180deg, #6B46C1 0%, #553C9A 100%) !important;
}

.nav-btn.active,
.nav-btn:hover {
    background: rgba(255, 255, 255, 0.15) !important;
}

/* 관리자 버튼 */
.btn-primary {
    background: linear-gradient(135deg, #6B46C1 0%, #553C9A 100%) !important;
}

.btn-edit {
    background: #6B46C1 !important;
}

.btn-approve {
    background: #6B46C1 !important;
}

/* 통계 카드 아이콘 색상 */
.stat-card {
    border-left: 4px solid #6B46C1 !important;
}

/* =============================
   업체 회원가입 모달 - 기존업체 검색/직접 입력 토글 및 검색결과
   ============================= */

.store-search-container {
    position: relative;
}

.search-type-toggle {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.search-type-btn {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.search-type-btn:hover {
    background: #F3F4F6;
}

.search-type-btn.active {
    border-color: #6B46C1;
    background: rgba(107, 70, 193, 0.08);
    color: #553C9A;
}

.search-input-wrapper {
    position: relative;
}

.search-results {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    max-height: 240px;
    overflow: auto;
    display: none;
    z-index: 9999;
}

.search-results.show {
    display: block;
}

.search-result-item {
    padding: 10px 12px;
    border-bottom: 1px solid #F3F4F6;
    cursor: pointer;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: #F9FAFB;
}

.search-result-name {
    font-weight: 700;
    font-size: 14px;
    color: #111827;
}

.search-result-address {
    font-size: 12px;
    color: #6B7280;
    margin-top: 2px;
}

.search-result-category {
    display: inline-block;
    font-size: 11px;
    color: #553C9A;
    background: rgba(107, 70, 193, 0.08);
    padding: 2px 8px;
    border-radius: 999px;
    margin-top: 6px;
}

.no-results {
    padding: 12px;
    color: #6B7280;
    font-size: 13px;
}

.selected-store-info {
    margin-top: 10px;
    padding: 10px 12px;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    background: #F9FAFB;
}

.selected-store-info .store-name {
    font-weight: 800;
    color: #111827;
}

.selected-store-info .store-address {
    margin-top: 4px;
    font-size: 12px;
    color: #6B7280;
}

.selected-store-info .clear-selection {
    display: inline-block;
    margin-top: 8px;
    font-size: 12px;
    color: #553C9A;
    font-weight: 700;
    cursor: pointer;
}
