/*
店舗ページCSS
*/

.vendor-shop-page {
    position: relative;
	width: 100%;
	height: auto;
    margin: 0 auto;
}

.vendor-shop-page__hero {
    position: relative;
    margin: -46px 24px 40px;
    background: #fff;
    border: 1px solid #e7e9ee;
    border-radius: 28px;
    padding: 28px 32px 28px 32px;
    box-shadow: 0 18px 40px rgba(30, 35, 90, 0.08);
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 28px;
    align-items: start;
}

.vendor-shop-page__heroPhoto img {
    display: block;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #fff;
    box-shadow: 0 12px 30px rgba(35, 41, 78, 0.15);
    background: #f7f8fb;
}

.vendor-shop-page__heroBlock {
    margin-top: 22px;
}

.vendor-shop-page__heroLabel {
    font-size: 18px;
    font-weight: 700;
    color: #2f3445;
    margin: 0 0 10px;
}

.vendor-shop-page__heroBody {
    min-width: 0;
}

.vendor-shop-page__name {
    font-size: 42px;
    margin: 0 0 12px;
}

.vendor-shop-page__description {
    margin-top: 12px;
}

.vendor-shop-page__headerVisual {
    width: 100%;
    margin: 0 0 0;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(34, 40, 74, 0.12);
}

.vendor-shop-page__headerVisual img {
    display: block;
    width: 100%;
    aspect-ratio: 5 / 2;
    object-fit: cover;
}

.vendor-shop-page__thumbnail {
    margin-bottom: 28px;
}

.vendor-shop-page__thumbnail img {
    display: block;
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(34, 40, 74, 0.12);
}

.vendor-shop-page__name {
    font-size: 48px;
    font-weight: 700;
    color: #2f3445;
    margin: 0 0 14px;
    line-height: 1.2;
    letter-spacing: 0.03em;
}

.vendor-shop-page__meta {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #846631;
    background: #fff8e7;
    border: 1px solid #ecd9a8;
    border-radius: 999px;
    padding: 8px 14px;
    margin: 0 0 18px;
    line-height: 1.6;
}

.vendor-shop-page__description {
    font-size: 16px;
    line-height: 2;
    color: #5d6274;
    margin: 0;
    white-space: pre-wrap;
    max-width: 900px;
}

.vendor-shop-page__hashtags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.vendor-shop-page__tag {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 15px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #d9e3f5;
    color: #48608b;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 6px 16px rgba(45, 71, 122, 0.06);
}

.vendor-shop-page__section {
    margin-top: 42px;
}

.vendor-shop-page__title {
    font-size: 32px;
    font-weight: 700;
    color: #2f3445;
    margin-bottom: 20px;
    line-height: 1.3;
}

.vendor-panel {
    background: #fff;
    border: 1px solid #e7e9ee;
    border-radius: 24px;
    padding: 26px;
    box-shadow: 0 14px 34px rgba(30, 35, 90, 0.06);
}

.vendor-shop-page__profile {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 34px;
    align-items: center;
}

.vendor-shop-page__profileImage img {
    display: block;
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    border: 1px solid #e7e9ee;
    background: #f7f8fb;
    box-shadow: 0 12px 30px rgba(35, 41, 78, 0.08);
}

.vendor-shop-page__profileBody {
    min-width: 0;
}

.vendor-shop-page__profileTitle {
    font-size: 28px;
    font-weight: 700;
    color: #2f3445;
    margin: 0 0 14px;
}

.vendor-shop-page__profileText {
    font-size: 15px;
    line-height: 2;
    color: #5f6472;
    margin: 0;
    white-space: pre-wrap;
}

.vendor-shop-products {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.vendor-shop-card {
    background: #fff;
    border: 1px solid #e7e9ee;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(30, 35, 90, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.vendor-shop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(30, 35, 90, 0.1);
}

.vendor-shop-card__thumb {
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, #f5f7fb 0%, #eef2fa 100%);
    overflow: hidden;
}

.vendor-shop-card__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vendor-shop-card__thumb--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b91a1;
    font-size: 14px;
    height: 100%;
}

.vendor-shop-card__body {
    padding: 20px;
}

.vendor-shop-card__name {
    font-size: 21px;
    font-weight: 700;
    color: #2f3445;
    margin: 0 0 12px;
    line-height: 1.5;
    min-height: 3em;
}

.vendor-shop-card__price {
    font-size: 28px;
    font-weight: 700;
    color: #295eb8;
    margin-bottom: 18px;
    line-height: 1.2;
}

.vendor-shop-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 14px;
    background: linear-gradient(135deg, #4b7bec 0%, #2f63cf 100%);
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(47, 99, 207, 0.24);
}

.vendor-empty {
    color: #7a7f8c;
    font-size: 15px;
}

.vendor-shop-page__menuDescription {
    margin-bottom: 16px;
}

.vendor-shop-page__menuMeta {
    margin-bottom: 16px;
}

@media screen and (max-width: 1024px) {
    .vendor-shop-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vendor-shop-page__profile {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .vendor-shop-page__profileImage {
        max-width: 320px;
    }
}

@media screen and (max-width: 767px) {
    .vendor-shop-page {
        padding: 20px 16px 56px;
    }

    .vendor-shop-page__hero {
        margin: -24px 0 32px;
        grid-template-columns: 1fr;
        padding: 22px 20px;
    }
	
	.vendor-shop-page__heroPhoto img {
        width: 120px;
        height: 120px;
    }

    .vendor-shop-page__thumbnail img {
        max-height: 260px;
        border-radius: 18px;
    }

    .vendor-shop-page__name {
        font-size: 34px;
    }

    .vendor-shop-page__description,
    .vendor-shop-page__profileText {
        font-size: 14px;
    }

    .vendor-panel {
        padding: 18px;
    }

    .vendor-shop-products {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vendor-shop-page__title {
        font-size: 26px;
    }

    .vendor-shop-page__profileTitle {
        font-size: 22px;
    }

    .vendor-shop-card__price {
        font-size: 24px;
    }
}
