/* Enyoi Store Info プラグイン - フロントエンド用スタイル */

.enyoi-store-info {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 24px;
    margin: 24px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
}

.enyoi-store-info.enyoi-store-info--compact {
    background: transparent;
    border: none;
    box-shadow: none;
    color: #f1f5f9;
    padding-top: .5rem;
}

.enyoi-store-info__content {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    padding: 0 2rem 2rem 2rem;
}

.enyoi-store-info__details {
    flex: 1;
    min-width: 300px;
}

.enyoi-store-info__item {
    display: flex;
    margin-bottom: 12px;
    align-items: flex-start;
}

.enyoi-store-info__label {
    font-weight: 600;
    color: #555555;
    min-width: 100px;
    margin-right: 12px;
    font-size: 14px;
}

.enyoi-store-info__value {
    flex: 1;
    color: #333333;
    line-height: 1.5;
    font-size: 14px;
}

.enyoi-store-info__value a {
    color: #0073aa;
    text-decoration: none;
    transition: color 0.2s ease;
}

.enyoi-store-info__value a:hover {
    color: #005177;
    text-decoration: underline;
}

.enyoi-store-info__map {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    width: 100%;
    min-height: 400px;
    /* 高さを自動調整するための最小値 */
}

.enyoi-store-info__map iframe {
    width: 100% !important;
    max-width: 100%;
    height: 400px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 0;
}

/* デバイス別電話番号表示制御 */
/* デフォルト: デスクトップでは通常テキスト、モバイルでは非表示 */
.enyoi-store-info__phone-mobile {
    display: none;
}

.enyoi-store-info__phone-desktop {
    display: inline;
}

/* タブレット・スマートフォン: モバイル版を表示、デスクトップ版を非表示 */
@media (max-width: 1024px) {
    .enyoi-store-info__phone-mobile {
        display: inline;
    }

    .enyoi-store-info__phone-desktop {
        display: none;
    }
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .enyoi-store-info {
        padding: 16px;
        margin: 16px 0;
    }

    .enyoi-store-info__content {
        flex-direction: column;
        gap: 16px;
    }

    .enyoi-store-info__item {
        flex-direction: column;
        margin-bottom: 16px;
    }

    .enyoi-store-info__label {
        margin-right: 0;
        margin-bottom: 4px;
        min-width: auto;
    }

    .enyoi-store-info__title {
        font-size: 20px;
    }

    .enyoi-store-info__map {
        min-width: 100%;
        max-width: 100%;
    }

}

/* 美容院テーマに合わせたカラーバリエーション */
.enyoi-store-info.theme-elegant {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid #e9ecef;
}

.enyoi-store-info.theme-elegant .enyoi-store-info__title {
    color: #495057;
    border-bottom-color: #dee2e6;
}

.enyoi-store-info.theme-elegant .enyoi-store-info__label {
    color: #6c757d;
}

.enyoi-store-info.theme-elegant .enyoi-store-info__value a {
    color: #007bff;
}

.enyoi-store-info.theme-elegant .enyoi-store-info__value a:hover {
    color: #0056b3;
}

/* 地図非表示時の幅調整 */
.enyoi-store-info.enyoi-store-info--no-map {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}