

    .local-kitchen-filters {
      max-width: 1400px;
      margin: 0 auto;
      padding-top: 10px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .local-filter-bar {
      display: flex;
      align-items: center;
      gap: 8px;
      flex: 1;
      min-width: 0;
      overflow-x: auto;
      scrollbar-width: none;
      -ms-overflow-style: none;
      padding: 4px 0;
    }

    .local-filter-bar::-webkit-scrollbar {
      display: none;
    }

    .local-filter-group {
      flex-shrink: 0;
    }

    .local-filter-group select,
    .local-filter-group input {
      padding: 4px 12px;
      border: 1px solid #e0e0e0;
      border-radius: 4px;
      font-size: 13px;
      background-color: #fafafa;
      transition: all 0.15s ease;
      cursor: pointer;
      white-space: nowrap;
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
    }

    .local-filter-group select {
      padding-right: 28px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23666' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 10px center;
    }

    .local-filter-group input {
      width: 140px;
    }

    .local-filter-group input::placeholder {
      color: #888;
    }

    .local-filter-group select:hover,
    .local-filter-group input:hover {
      border-color: #bbb;
      background-color: #fff;
    }

    .local-filter-group select:focus,
    .local-filter-group input:focus {
      outline: none;
      border-color: #888;
      background-color: #fff;
    }

    .local-filter-group select.active,
    .local-filter-group input.active {
      border-color: #333;
      background-color: #fff;
      font-weight: 500;
    }

    .local-filter-reset {
      padding: 8px 14px;
      border: 1px solid tomato;
      border-radius: 10px;
      font-size: 13px;
      background-color: transparent;
      color: tomato;
      cursor: pointer;
      display: none;
      transition: all 0.15s ease;
      white-space: nowrap;

      flex-shrink: 0;
    }

    .local-filter-reset.visible {
      display: inline-block;
    }

    .local-load-more-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 24px 0;
      text-align: center;
    }

    .local-load-more-btn {
      padding: 12px 32px;
      font-size: 14px;
      border: 1px solid #333;
      border-radius: 6px;
      background: #fff;
      color: #333;
      cursor: pointer;
      transition: all 0.15s ease;
    }

    .local-load-more-btn:hover {
      background: #333;
      color: #fff;
    }

    .local-load-more-btn:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }

    .local-load-more-info {
      margin-top: 8px;
      font-size: 13px;
      color: #666;
    }
    .local-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 24px;
        margin-top:1rem;
    }

    .local-card {
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        transition: transform 0.2s, box-shadow 0.2s;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        text-decoration: none;
    }

    .local-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    }

    .local-card-image-container {
        position: relative;
        padding-top: 75%;
        overflow: hidden;
        background: #f0f0f0;
    }

    .local-card-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .local-price-badge {
        position: absolute;
        top: 10px;
        right: 10px;
        background: #1a1a1a;
        color: white;
        border-radius:4px;
        padding: 1px 8px;
        font-size: 0.8rem;
        font-weight: 700;
        box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    }
    .local-price-badge-light {
        position: absolute;
        top: 10px;
        left: 0px;
        background: white;
        color: black;
        padding: 1px 8px;
        font-size: 0.8rem;
        font-weight: 700;
        box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    }

    .local-card-content {
        padding: 16px;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }

    .local-kitchen-name {
        font-size: 20px;
        font-weight: 600;
        color: #1a1a1a;
        margin:0px;
        margin-bottom:4px;
    }

    .local-kitchen-details {
        list-style: none;
        margin: 0px;
        padding:0px;
        flex-grow: 1;
    }

    .local-kitchen-details li {
        color: #666;
        font-size: 14px;
        padding: 0px 0;
        display: flex;
        align-items: flex-start;
        gap: 6px;
    }

    .local-kitchen-details li:before {
        content: "•";
        color: #ff9500;
        font-weight: bold;
        line-height: 1.8;
        flex-shrink: 0;
    }

    .local-reseller-section {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 16px;
        background: #efefef;
        border-radius: 6px;
        margin-top: 4px;
        gap: 12px;
    }

    .local-reseller-info {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }



    .local-reseller-name {
        font-size: 18px;
        font-weight: 700;
        color: #0066cc;
    }

    .local-review-score {
        padding-top:10px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .local-stars-container {
        position: relative;
        display: inline-block;
        font-size: 16px;
        line-height: 1;
    }

    .local-stars-gray {
        color: #ddd;
        letter-spacing: 2px;
    }

    .local-stars-yellow {
        position: absolute;
        top: 0;
        left: 0;
        overflow: hidden;
        white-space: nowrap;
        color: #ff9500;
        letter-spacing: 2px;
    }

    .local-score-info {
        display: flex;
        align-items: center;
        gap: 4px;
    }
    .local-score-info span {display: flex;;align-items: center;}
    .local-score-number {
        font-weight: 700;
        color: #1a1a1a;
        font-size: 16px;
    }

    .local-review-count {
        padding-top:2px;
        font-size: 12px;
        color: #666;
    }

    .local-info-content p {margin:0px;}
    .local-info-content h2:not(:nth-child(1)) {margin-top:1rem;;}

@media screen and (max-width: 600px) {
        .local-card-image-container {

            padding-top: 50%;

        }
        .local-kitchen-name {padding-left:5px;font-size:1.3rem;}
        .local-reseller-section {border-radius: 0px;padding:6px 10px;margin-top:6px}
      }

    .local-type-nav {
      display: flex;
      gap: 8px;
      margin-top: 12px;
      flex-wrap: wrap;
    }

    .local-type-nav a {
      padding: 5px 14px;
      border: 1px solid #ccc;
      border-radius: 10px;
      font-size: 13px;
      text-decoration: none;
      color: #333;
      background: #fff;
      transition: all 0.15s ease;
    }

    .local-type-nav a:hover {
      border-color: #333;
    }

    .local-type-nav a.local-active {
      background: #333;
      color: #fff;
      border-color: #333;
    }
