/* GUT NaturForum Frontend */
.gut-search-wrap { max-width: 720px; margin: 0 auto; }
.gut-search-form { background: #fff; border: 1px solid #c0d4a0; border-radius: 16px; padding: 10px; box-shadow: 0 2px 16px rgba(44,74,30,.08); }
.gut-row1 { display: flex; gap: 8px; margin-bottom: 10px; }
.gut-row2 { padding-top: 14px; border-top: 1px solid #c0d4a0; }
.gut-field { flex: 1; position: relative; display: flex; align-items: center; }
.gut-icon { position: absolute; left: 11px; font-size: 13px; pointer-events: none; }
.gut-field input { width: 100%; height: 44px; border: 1px solid #c0d4a0; border-radius: 10px; padding: 0 12px 0 34px; font-size: 13px; background: #f6f8f0; box-sizing: border-box; outline: none; }
.gut-field input:focus { border-color: #8aac5a; background: #fff; }
.gut-km { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #6a7060; }
.gut-km select { height: 36px; border: 1px solid #c0d4a0; border-radius: 8px; padding: 0 28px 0 10px; font-size: 13px; background: #f6f8f0; outline: none; cursor: pointer; appearance: none; }
.gut-btn { width: 100%; height: 44px; background: #5c7a3e; color: #f6f8f0; border: none; border-radius: 10px; font-size: 14px; font-weight: 500; cursor: pointer; transition: background .15s; }
.gut-btn:hover { background: #2d4a1e; }

.gut-results { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; margin-top: 24px; }
.gut-result-card { background: #fff; border: 1px solid #c0d4a0; border-radius: 12px; overflow: hidden; transition: all .2s; }
.gut-result-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(44,74,30,.12); }
.gut-result-card a { text-decoration: none; color: inherit; display: block; }
.gut-card-img img { width: 100%; height: 160px; object-fit: cover; }
.gut-no-img { height: 100px; display: flex; align-items: center; justify-content: center; font-size: 40px; background: #f6f8f0; }
.gut-card-body { padding: 14px; }
.gut-card-kat { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: #8aac5a; margin-bottom: 4px; }
.gut-card-name { font-size: 15px; font-weight: 500; color: #2d3d1e; margin: 0 0 6px; }
.gut-card-addr { font-size: 12px; color: #6a7060; }
.gut-card-dist { font-size: 12px; color: #8aac5a; font-weight: 500; margin-top: 4px; }
.gut-no-results, .gut-error { padding: 20px; text-align: center; color: #6a7060; }

.gut-pagination { display: flex; align-items: center; justify-content: center; gap: 20px; margin: 32px 0; }
.gut-page-arrow { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; border: 1px solid #c0d4a0; background: #f6f8f0; color: #5c7a3e; font-size: 18px; text-decoration: none; transition: all .15s; }
.gut-page-arrow:hover { background: #5c7a3e; color: #fff; border-color: #5c7a3e; }
.gut-page-arrow-disabled { opacity: 0.3; cursor: default; }
.gut-page-info { font-size: 13px; color: #6a7060; font-weight: 500; }
