.site-logo,
.hero-title,
.section-title,
.footer-logo {
    font-family: var(--font-heading);
}

.site-logo {
    display: inline-flex;
    align-items: center;
}

.site-logo img {
    width: 118px;
    height: auto;
}

.section-kicker {
    margin: 0 0 10px;
    color: var(--color-primary-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-title {
    margin: 0;
    color: #162f43;
    font-size: clamp(2.35rem, 4.4vw, 4.2rem);
    font-weight: 800;
    line-height: 1.24;
    letter-spacing: 0;
}

.hero-title-line {
    display: block;
    white-space: nowrap;
}

.hero-lead {
    max-width: 520px;
    margin: 24px 0 0;
    color: var(--color-muted);
    font-size: 1.08rem;
}

.soft-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
}

.soft-circle-one {
    width: 310px;
    height: 310px;
    top: 48px;
    right: 8%;
    background: rgba(214, 241, 255, 0.72);
}

.soft-circle-two {
    width: 190px;
    height: 190px;
    left: 6%;
    bottom: 28px;
    background: rgba(255, 235, 205, 0.6);
}

.floating-food-card {
    position: absolute;
    overflow: hidden;
    border: 9px solid rgba(255, 255, 255, 0.9);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    animation: floatFood 6.5s ease-in-out infinite;
}

.floating-food-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.food-card-large {
    width: 330px;
    height: 410px;
    top: 50px;
    left: 118px;
    transform: rotate(4deg);
}

.food-card-small {
    width: 170px;
    height: 170px;
}

.food-card-medium {
    width: 220px;
    height: 180px;
}

.food-card-one {
    top: 0;
    left: 0;
    transform: rotate(-9deg);
    animation-delay: -1.2s;
}

.food-card-two {
    right: 0;
    top: 72px;
    transform: rotate(10deg);
    animation-delay: -2.4s;
}

.food-card-three {
    right: 38px;
    bottom: 18px;
    transform: rotate(-6deg);
    animation-delay: -3.2s;
}

@keyframes floatFood {
    0%,
    100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -16px;
    }
}

.section-heading {
    max-width: 680px;
    margin-bottom: 30px;
}

.section-title {
    margin: 0;
    color: #173449;
    font-size: clamp(1.9rem, 3vw, 2.75rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0;
}

.shop-title,
.shop-section-title,
.shop-sidebar-title {
    font-family: var(--font-heading);
    letter-spacing: 0;
}

.shop-title {
    margin: 0 0 14px;
    color: #162f43;
    font-size: clamp(2.1rem, 4.2vw, 3.7rem);
    font-weight: 800;
    line-height: 1.18;
}

.shop-section-title {
    margin: 0 0 16px;
    color: #173449;
    font-size: clamp(1.35rem, 2vw, 1.65rem);
    font-weight: 800;
    line-height: 1.35;
}

.shop-sidebar-title {
    margin: 0 0 14px;
    color: #173449;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.35;
}

.section-heading p:not(.section-kicker) {
    margin: 12px 0 0;
    color: var(--color-muted);
}

.section-heading-row {
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
}

.section-heading-row > p {
    max-width: 620px;
    text-align: right;
}

.condition-chip-list,
.result-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.condition-chip-list {
    margin-top: 22px;
}

.condition-chip,
.result-tag {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
}

.condition-chip {
    color: #2f6f92;
    background: var(--color-surface-blue);
    border: 1px solid rgba(125, 199, 235, 0.28);
}

.result-tag {
    color: #7a5527;
    background: #fff2df;
}

.search-card {
    padding: 30px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-large);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(239, 249, 255, 0.92)),
        #ffffff;
    box-shadow: var(--shadow-card);
}

.search-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.select-field {
    display: grid;
    gap: 8px;
}

.select-field span {
    color: #315269;
    font-size: 0.9rem;
    font-weight: 800;
}

.select-field select {
    width: 100%;
    min-height: 54px;
    padding: 0 42px 0 16px;
    border: 1px solid rgba(84, 132, 165, 0.22);
    border-radius: 17px;
    color: #243b4d;
    background:
        linear-gradient(45deg, transparent 50%, #5b8ca9 50%) calc(100% - 22px) 23px / 7px 7px no-repeat,
        linear-gradient(135deg, #ffffff, #f5fbff);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
    appearance: none;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.select-field select:hover,
.select-field select:focus {
    border-color: rgba(47, 134, 182, 0.5);
    box-shadow: 0 0 0 4px rgba(125, 199, 235, 0.18);
    outline: none;
}

.search-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 54px;
    margin-top: 24px;
    padding: 0 28px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    box-shadow: 0 16px 30px rgba(47, 134, 182, 0.25);
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.search-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 38px rgba(47, 134, 182, 0.32);
    filter: saturate(1.08);
}

.results-search-card {
    margin-bottom: 6px;
}

.restaurant-card {
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-medium);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 34px rgba(45, 87, 112, 0.1);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.restaurant-card:hover {
    transform: translateY(-8px);
    border-color: rgba(125, 199, 235, 0.42);
    box-shadow: 0 26px 60px rgba(45, 87, 112, 0.16);
}

.restaurant-card > img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.restaurant-card-body {
    padding: 22px;
}

.restaurant-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.restaurant-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    color: #2f6f92;
    background: var(--color-surface-blue);
    font-size: 0.78rem;
    font-weight: 800;
}

.restaurant-card h3 {
    margin: 0 0 10px;
    color: #1b374a;
    font-size: 1.25rem;
    line-height: 1.35;
    letter-spacing: 0;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.tag-list span {
    padding: 5px 10px;
    border-radius: 999px;
    color: #7a5527;
    background: #fff2df;
    font-size: 0.78rem;
    font-weight: 800;
}

.restaurant-card p {
    min-height: 74px;
    margin: 0 0 18px;
    color: var(--color-muted);
    font-size: 0.95rem;
}

.text-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    color: var(--color-primary-dark);
    background: #eef8ff;
    font-size: 0.9rem;
    font-weight: 800;
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.text-button:hover {
    color: #ffffff;
    background: var(--color-primary-dark);
    transform: translateY(-2px);
}

.result-card {
    display: grid;
    grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
    gap: 26px;
    width: min(100%, 900px);
    margin: 0 auto;
    padding: 18px;
    border: 1px solid var(--color-border);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-card);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.result-card:hover {
    transform: translateY(-4px);
    border-color: rgba(125, 199, 235, 0.42);
    box-shadow: 0 26px 60px rgba(45, 87, 112, 0.15);
}

.result-card.is-hidden {
    display: none;
}

.result-gallery {
    min-width: 0;
}

.result-main-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: var(--color-surface-blue);
}

.result-main-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.gallery-controls {
    position: absolute;
    inset: auto 14px 14px auto;
    display: flex;
    gap: 8px;
}

.gallery-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    color: #173449;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 10px 22px rgba(24, 54, 72, 0.16);
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.gallery-button:hover {
    transform: translateY(-2px);
    background: #ffffff;
}

.gallery-image-data {
    display: none;
}

.shop-article,
.shop-sidebar-section {
    border: 1px solid rgba(85, 132, 163, 0.14);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 34px rgba(45, 87, 112, 0.08);
}

.shop-article {
    padding: 36px;
    border-radius: 12px;
}

.shop-article-header {
    margin-bottom: 28px;
}

.shop-article-main-photo {
    margin: 0 0 34px;
    overflow: hidden;
    border-radius: 8px;
    background: var(--color-surface-blue);
}

.shop-article-main-photo img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.shop-article-section {
    margin-top: 34px;
}

.shop-article-section p {
    margin: 0;
    color: var(--color-muted);
    font-size: 1rem;
    line-height: 2;
}

.shop-photo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.shop-photo-item {
    overflow: hidden;
    margin: 0;
    border-radius: 8px;
    background: var(--color-surface-blue);
}

.shop-photo-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.shop-sidebar {
    display: grid;
    gap: 22px;
}

.shop-sidebar-section {
    padding: 20px;
    border-radius: 10px;
}

.shop-info-list {
    display: grid;
    gap: 14px;
}

.shop-info-list .result-detail {
    display: block;
    font-size: 0.88rem;
    line-height: 1.6;
}

.shop-info-list .result-detail span {
    display: block;
    margin-bottom: 2px;
}

.related-post-list {
    display: grid;
    gap: 14px;
}

.related-post-link {
    display: grid;
    gap: 4px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(85, 132, 163, 0.14);
}

.related-post-link:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.related-post-link span {
    color: var(--color-muted);
    font-size: 0.76rem;
    font-weight: 800;
}

.related-post-link strong {
    color: #173449;
    font-size: 0.92rem;
    line-height: 1.55;
    transition: color 0.2s ease;
}

.related-post-link:hover strong {
    color: var(--color-primary-dark);
}

.back-link-button {
    min-height: 46px;
    padding: 0 20px;
}

.result-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 2px;
}

.result-card-title {
    margin: 14px 0 16px;
    color: #173449;
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2vw, 1.72rem);
    line-height: 1.3;
    letter-spacing: 0;
}

.result-card-title a {
    text-decoration-thickness: 2px;
    text-decoration-color: transparent;
    text-underline-offset: 5px;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.result-card-title a:hover {
    color: var(--color-primary-dark);
    text-decoration-line: underline;
    text-decoration-color: rgba(47, 134, 182, 0.36);
}

.result-detail-list {
    display: grid;
    gap: 10px;
    width: 100%;
    margin: 0 0 20px;
}

.result-detail {
    display: grid;
    grid-template-columns: 4.6em minmax(0, 1fr);
    gap: 10px;
    margin: 0;
    color: #315269;
    font-size: 0.9rem;
    line-height: 1.55;
}

.result-detail span {
    color: var(--color-muted);
    font-weight: 800;
}

.result-detail strong {
    color: #243b4d;
    font-weight: 700;
}

.result-description {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.94rem;
    line-height: 1.85;
}

.results-pager {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding-top: 10px;
}

.pager-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 112px;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid rgba(47, 134, 182, 0.24);
    border-radius: 999px;
    color: var(--color-primary-dark);
    background: #ffffff;
    font-weight: 800;
    cursor: pointer;
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.pager-button:hover:not(:disabled):not([aria-disabled="true"]) {
    color: #ffffff;
    background: var(--color-primary-dark);
    transform: translateY(-2px);
}

.pager-button:disabled {
    cursor: not-allowed;
    opacity: 0.42;
}

.pager-button[aria-disabled="true"] {
    cursor: not-allowed;
    opacity: 0.42;
}

.pager-status {
    color: #315269;
    font-weight: 800;
}

.empty-results-card {
    width: min(100%, 900px);
    margin: 0 auto;
    padding: 28px;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 34px rgba(45, 87, 112, 0.08);
    color: var(--color-muted);
}

.empty-results-card p {
    margin: 0;
}

.shop-article-body > *:first-child {
    margin-top: 0;
}

.shop-article-body > *:last-child {
    margin-bottom: 0;
}

.shop-article-body p {
    color: var(--color-muted);
    line-height: 2;
}

.shop-article-body figure,
.shop-article-body .wp-block-image {
    width: 100%;
    margin: 30px 0;
    overflow: hidden;
    border-radius: 8px;
    background: var(--color-surface-blue);
}

.shop-article-body img {
    display: block;
    width: 100%;
    height: 430px;
    object-fit: cover;
}

.shop-article-body .alignleft,
.shop-article-body .alignright,
.shop-article-body .aligncenter,
.shop-article-body .alignwide,
.shop-article-body .alignfull {
    float: none;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.footer-logo {
    margin: 0 0 4px;
    color: #173449;
    font-size: 1.2rem;
    font-weight: 800;
}

.footer-inner p {
    margin-top: 0;
    margin-bottom: 0;
}

.footer-contact {
    margin-top: 8px;
    font-size: 0.92rem;
}

.footer-contact a {
    color: var(--color-primary-dark);
    font-weight: 800;
    text-decoration-line: underline;
    text-decoration-color: rgba(47, 134, 182, 0.28);
    text-underline-offset: 4px;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.footer-contact a:hover {
    color: #173449;
    text-decoration-color: rgba(23, 52, 73, 0.4);
}

.copyright {
    text-align: right;
    font-size: 0.9rem;
}
