.search-shop {
    --ss-border: #d8dbe0;
    --ss-text: #f8fafc;
    --ss-muted: #e5e7eb;
    --ss-accent: #d71914;
    --ss-card-bg: #1a1c20;
    --ss-form-text: #111827;
    --ss-form-muted: #4b5563;
    --ss-bg: #ffffff;
    color: var(--ss-form-text);
}

.search-shop__form {
    background: var(--ss-bg);
    border: 1px solid var(--ss-border);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 30px;
}

.search-shop__fields {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.search-shop__fields label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 14px;
    color: var(--ss-form-muted);
}

.search-shop__fields input {
    width: 100%;
    border: 1px solid var(--ss-border);
    border-radius: 999px;
    padding: 12px 16px;
    font-size: 15px;
    color: var(--ss-form-text);
    background: #fff;
}

.search-shop__actions {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-shop__actions button {
    border: 0;
    border-radius: 999px;
    background: var(--ss-accent);
    color: #fff;
    padding: 10px 20px;
    font-weight: 700;
    cursor: pointer;
}

.search-shop__reset {
    color: var(--ss-muted);
    text-decoration: none;
}

.search-shop__results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 30px;
}

.search-shop__item {
    border: 1px solid #2b2f35;
    border-radius: 4px;
    background: var(--ss-card-bg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.search-shop__media {
    display: block;
    aspect-ratio: 16 / 9;
    background: #2b3138;
}

.search-shop__media img,
.search-shop__media-placeholder {
    width: 100%;
    height: 100%;
    display: block;
}

.search-shop__media img {
    object-fit: cover;
}

.search-shop__media-placeholder {
    background: linear-gradient(140deg, #2f353d 0%, #20242a 100%);
}

.search-shop__content {
    padding: 28px 22px 24px;
    text-align: center;
}

.search-shop__title {
    margin: 0 0 16px;
    font-size: clamp(24px, 2vw, 40px);
    line-height: 1.08;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.search-shop__title a {
    text-decoration: none;
    color: var(--ss-text);
}

.search-shop__meta {
    margin: 0;
    color: var(--ss-muted);
    font-size: 16px;
    line-height: 1.5;
}

.search-shop__phone {
    margin-top: 5px;
    margin-bottom: 20px;
}

.search-shop__phone a {
    color: #fff!important;
}

.search-shop__cta {
    position: relative;
    font-family: Helvetica;
    font-weight: 700;
    font-size: 16px;
    color: var(--text_light);
    text-transform: uppercase;
    padding-block-start: 10px;
    padding-block-end: 10px;
    padding-inline-start: 35px;
    padding-inline-end: 35px;
    border-radius: 50px;
    border-width: 2px;
    border-color: var(--border_red);
    border-style: solid;
    background-color: var(--bg_red);
}

.search-shop__cta:hover,
.search-shop__cta:focus-visible {
    background: #b91511;
}

.search-shop__sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.search-shop__pagination {
    margin-top: 16px;
    display: flex;
    gap: 12px;
}

.search-shop__pagination a {
    text-decoration: none;
    color: var(--ss-accent);
}

.search-shop-redirect {
    border: 2px solid #9db6df;
    background: #f4f6fa;
    padding: 4px 10px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-shop-redirect__group {
    min-width: 0;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 4px;
}

.search-shop-redirect__icon {
    width: 30px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #555;
    flex-shrink: 0;
}

.search-shop-redirect__icon svg {
    width: 34px;
    height: 34px;
    display: block;
    fill: currentColor;
}

.search-shop-redirect__group input {
    font-family: Helvetica;
    font-weight: 400;
    width: 100%;
    min-width: 320px;
    background: #fff;
    color: #4b5563;
    font-size: 16px;
    line-height: 1.2;
    padding: 8px 0;
    background-color: transparent;
    border: none;
}

.search-shop-redirect__group input:focus,
.search-shop-redirect__group input:active {
    outline: none;
    box-shadow: none;
    border: none;
}

.search-shop-redirect__button {
    position: relative;
    font-family: Helvetica;
    font-weight: 700;
    font-size: 16px;
    color: var(--text_light);
    text-transform: uppercase;
    padding-block-start: 10px;
    padding-block-end: 10px;
    padding-inline-start: 35px;
    padding-inline-end: 35px;
    border-radius: 50px;
    border-width: 2px;
    border-color: var(--border_red);
    border-style: solid;
    background-color: var(--bg_red);
}

.search-shop-redirect__button:hover,
.search-shop-redirect__button:focus-visible {
    background: #b91511;
}

@media (max-width: 640px) {
    .search-shop__content {
        padding: 22px 16px 18px;
    }

    .search-shop__title {
        font-size: clamp(22px, 9vw, 30px);
    }

    .search-shop__cta {
        min-height: 52px;
        font-size: 18px;
    }

    .search-shop-redirect {
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
    }

    .search-shop-redirect__group {
        gap: 10px;
    }

    .search-shop-redirect__icon {
        width: 40px;
        height: 40px;
    }

    .search-shop-redirect__icon svg {
        width: 26px;
        height: 26px;
    }

    .search-shop-redirect__group input {
        font-size: 20px;
    }

    .search-shop-redirect__button {
        width: 100%;
        min-width: 0;
        min-height: 56px;
        font-size: 22px;
    }
}
